Initial structure for ECMA-119 writer.

This commit is contained in:
Vreixo Formoso
2007-12-17 23:22:19 +01:00
parent 159b775d22
commit 5e2de57aa9
7 changed files with 139 additions and 25 deletions

View File

@ -115,5 +115,7 @@ void free_node(void *nodep)
void iso_file_src_free(Ecma119Image *img)
{
tdestroy(img->file_srcs, free_node);
if (img->file_srcs != NULL) {
tdestroy(img->file_srcs, free_node);
}
}