提交 4ae090ff authored 作者: Jeff Lenk's avatar Jeff Lenk

oops fix this the right way - json malloc and free

上级 091952ca
...@@ -33,8 +33,18 @@ static int cJSON_strcasecmp(const char *s1,const char *s2) ...@@ -33,8 +33,18 @@ static int cJSON_strcasecmp(const char *s1,const char *s2)
return tolower(*(const unsigned char *)s1) - tolower(*(const unsigned char *)s2); return tolower(*(const unsigned char *)s1) - tolower(*(const unsigned char *)s2);
} }
static void *(*cJSON_malloc)(size_t sz); static void *glue_malloc(size_t theSize)
static void (*cJSON_free)(void *ptr); {
return(malloc(theSize));
}
static void glue_free(void *thePtr)
{
free(thePtr);
}
static void *(*cJSON_malloc)(size_t sz) = glue_malloc;
static void (*cJSON_free)(void *ptr) = glue_free;
static char* cJSON_strdup(const char* str) static char* cJSON_strdup(const char* str)
{ {
......
...@@ -33,8 +33,18 @@ static int cJSON_strcasecmp(const char *s1,const char *s2) ...@@ -33,8 +33,18 @@ static int cJSON_strcasecmp(const char *s1,const char *s2)
return tolower(*(const unsigned char *)s1) - tolower(*(const unsigned char *)s2); return tolower(*(const unsigned char *)s1) - tolower(*(const unsigned char *)s2);
} }
static void *(*cJSON_malloc)(size_t sz); static void *glue_malloc(size_t theSize)
static void (*cJSON_free)(void *ptr); {
return(malloc(theSize));
}
static void glue_free(void *thePtr)
{
free(thePtr);
}
static void *(*cJSON_malloc)(size_t sz) = glue_malloc;
static void (*cJSON_free)(void *ptr) = glue_free;
static char* cJSON_strdup(const char* str) static char* cJSON_strdup(const char* str)
{ {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论