Skip to content

Commit

Permalink
Merge commit 'refs/pullreqs/168' into bsdmake
Browse files Browse the repository at this point in the history
  • Loading branch information
robohack committed Nov 12, 2021
2 parents 7556143 + 1b9509d commit 7b92f2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/yajl_tree.c
Original file line number Diff line number Diff line change
Expand Up @@ -486,8 +486,8 @@ yajl_val yajl_tree_parse (const char *input, /*+ Pointer to a null-terminated
snprintf(error_buffer, error_buffer_size, "%s", internal_err_str);
YA_FREE(&(handle->alloc), internal_err_str);
}
while (ctx.stack) { /* from pull req. #168 */
yajl_tree_free (context_pop(&ctx));
while (ctx.stack) {
yajl_tree_free(context_pop(&ctx));
}
yajl_free (handle);
return NULL;
Expand Down

0 comments on commit 7b92f2b

Please sign in to comment.