Skip to content

Commit

Permalink
Fix #16303 - c->table_query double free (#16318)
Browse files Browse the repository at this point in the history
  • Loading branch information
aar0nge authored Mar 26, 2020
1 parent ced0223 commit cb8b683
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libr/core/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -2842,7 +2842,7 @@ R_API void r_core_fini(RCore *c) {
// TODO: sync all dbs?
//r_core_file_free (c->file);
//c->file = NULL;
free (c->table_query);
R_FREE (c->table_query);
r_list_free (c->files);
r_list_free (c->watchers);
r_list_free (c->scriptstack);
Expand Down

0 comments on commit cb8b683

Please # to comment.