Replaced sci_free() with free() - it's OK to free a NULL pointer, so the checking that sci_free() performed is not necessary
svn-id: r38406
This commit is contained in:
parent
b8d2c41cdd
commit
d39d83e525
25 changed files with 84 additions and 103 deletions
|
@ -902,7 +902,7 @@ script_map_kernel(state_t *s) {
|
|||
|
||||
void
|
||||
free_kfunct_tables(state_t *s) {
|
||||
sci_free(s->kfunct_table);
|
||||
free(s->kfunct_table);
|
||||
s->kfunct_table = NULL;
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue