DEVTOOLS: Fix Missing Free in SCUMM fontdata tool.

This is part of the fix for bug Trac #10655.
This commit is contained in:
D G Turner 2018-10-06 13:21:03 +01:00
parent 2eecde612a
commit 16bf0e454f

View file

@ -883,5 +883,8 @@ int main() {
printf("};\n");
free(specialCharsetData);
specialCharsetData = NULL;
return 0;
}