Skip to content

Commit

Permalink
Removing efree from parser
Browse files Browse the repository at this point in the history
  • Loading branch information
andresgutierrez committed Apr 21, 2016
1 parent 191d87c commit 3bc7895
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser/parser/base.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ void parser_free_memory()
if (parser_memory_manager->slots != NULL) {
int i;
for (i = 0; i < parser_memory_manager->number; i++) {
efree(parser_memory_manager->slots[i]);
//efree(parser_memory_manager->slots[i]);
}
efree(parser_memory_manager->slots);
efree(parser_memory_manager);
Expand Down

0 comments on commit 3bc7895

Please sign in to comment.