mirror of
https://github.com/akheron/jansson.git
synced 2025-04-05 21:45:04 +00:00
json_dumps: Close the strbuffer if dumping fails
This commit is contained in:
parent
76999799ed
commit
79009e62c1
1 changed files with 6 additions and 2 deletions
|
@ -242,11 +242,15 @@ char *json_dumps(const json_t *json, unsigned long flags)
|
|||
if(strbuffer_init(&strbuff))
|
||||
return NULL;
|
||||
|
||||
if(do_dump(json, flags, 0, dump_to_strbuffer, (void *)&strbuff))
|
||||
if(do_dump(json, flags, 0, dump_to_strbuffer, (void *)&strbuff)) {
|
||||
strbuffer_close(&strbuff);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if(dump_to_strbuffer("\n", 1, (void *)&strbuff))
|
||||
if(dump_to_strbuffer("\n", 1, (void *)&strbuff)) {
|
||||
strbuffer_close(&strbuff);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
result = strdup(strbuffer_value(&strbuff));
|
||||
strbuffer_close(&strbuff);
|
||||
|
|
Loading…
Add table
Reference in a new issue