mirror of
https://github.com/akheron/jansson.git
synced 2025-04-05 05:25:04 +00:00
Fix a leak when memory allocation fails in json_object_set() & friends
This commit is contained in:
parent
c96763215d
commit
e20619e071
1 changed files with 3 additions and 0 deletions
|
@ -139,7 +139,10 @@ int json_object_set_new_nocheck(json_t *json, const char *key, json_t *value)
|
|||
allocated. */
|
||||
k = jsonp_malloc(offsetof(object_key_t, key) + strlen(key) + 1);
|
||||
if(!k)
|
||||
{
|
||||
json_decref(value);
|
||||
return -1;
|
||||
}
|
||||
|
||||
k->serial = object->serial++;
|
||||
strcpy(k->key, key);
|
||||
|
|
Loading…
Add table
Reference in a new issue