diff options
Diffstat (limited to 'loader/cJSON.c')
| -rw-r--r-- | loader/cJSON.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/loader/cJSON.c b/loader/cJSON.c index fc3ba049..e7266c38 100644 --- a/loader/cJSON.c +++ b/loader/cJSON.c @@ -88,6 +88,10 @@ void cJSON_Delete(cJSON *c) { } } +void cJSON_Free(void *p) { + cJSON_free(p); +} + /* Parse the input text to generate a number, and populate the result into item. */ static const char *parse_number(cJSON *item, const char *num) { |
