Improve mangling algorithm, by using a hash table for name search.

This commit is contained in:
Vreixo Formoso
2008-01-12 02:43:07 +01:00
parent 4b3a86185f
commit c00d84f0f2
2 changed files with 35 additions and 18 deletions

View File

@ -125,6 +125,9 @@ int main(int argc, char **argv)
printf("\n\n");
ecma119_node_free(ecma119->root);
iso_rbtree_destroy(ecma119->files, iso_file_src_free);
free(ecma119->input_charset);
free(ecma119);
iso_image_unref(image);
return 0;
}