gendef.c (main): run imp32_free() before returning to avoid leaks.

This commit is contained in:
sezero 2017-03-07 17:51:10 +03:00
parent 0eef7fef97
commit 4bcf9b54b1

View File

@ -253,6 +253,7 @@ int main(int argc,char **argv)
free(opt);
opt = next;
}
imp32_free ();
return 0;
}