Skip to content

Commit

Permalink
Hash table remove fix (#435)
Browse files Browse the repository at this point in the history
  • Loading branch information
Saloed committed Mar 22, 2023
1 parent 85e6d49 commit eb46358
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/utils/symbol_tables.c
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,7 @@ void stbl_remove_records(stbl_t *sym_table, void *aux, stbl_filter_t f) {
// keep r
*q = r;
q = &r->next;
r = p;
}
}
*q = NULL;
Expand Down

0 comments on commit eb46358

Please sign in to comment.