mirror of
https://github.com/akheron/jansson.git
synced 2025-04-06 05:55:05 +00:00
Fix a use after free
This commit is contained in:
parent
8b1bdcacb7
commit
11813f4128
1 changed files with 1 additions and 1 deletions
|
@ -240,10 +240,10 @@ static json_t *pack_object(scanner_t *s, va_list *ap)
|
|||
}
|
||||
|
||||
if(json_object_set_new_nocheck(object, key, value)) {
|
||||
set_error(s, "<internal>", "Unable to add key \"%s\"", key);
|
||||
if(ours)
|
||||
jsonp_free(key);
|
||||
|
||||
set_error(s, "<internal>", "Unable to add key \"%s\"", key);
|
||||
goto error;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue