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:
Filippos Karapetis 2009-02-17 13:51:52 +00:00
parent b8d2c41cdd
commit d39d83e525
25 changed files with 84 additions and 103 deletions

View file

@ -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;
}