0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-04-22 17:45:37 +00:00

[vkgen] Plug some memory leaks

Not that they really matter, but it makes checking valgrind easier.
This commit is contained in:
Bill Currie 2023-03-04 00:41:38 +09:00
parent 8b8bc42038
commit c28ffbb766

View file

@ -255,5 +255,7 @@ main(int argc, string *argv)
fprintf (output_file, "}\n");
Qclose (output_file);
Qclose (header_file);
Hash_DelTable (available_types);
[plist release];
return 0;
}