提交 6a944c2e 编写于 作者: M Mark VanderVoord

Merge pull request #120 from aburks/master

Fixes #118: unity_output_Spy should use the platform-agnostic macros for memory.
......@@ -7,8 +7,9 @@
#include "unity_output_Spy.h"
#include "unity_fixture.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
static int size;
......@@ -21,14 +22,14 @@ void UnityOutputCharSpy_Create(int s)
size = s;
count = 0;
spy_enable = 0;
buffer = malloc(size);
buffer = UNITY_FIXTURE_MALLOC(size);
memset(buffer, 0, size);
}
void UnityOutputCharSpy_Destroy(void)
{
size = 0;
free(buffer);
UNITY_FIXTURE_FREE(buffer);
}
int UnityOutputCharSpy_OutputChar(int c)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册