aboutsummaryrefslogtreecommitdiff
path: root/devtools
diff options
context:
space:
mode:
authorD G Turner2018-10-06 13:21:03 +0100
committerD G Turner2018-10-06 13:21:03 +0100
commit16bf0e454f831765a59cc6ace4d8a855196778c8 (patch)
tree5f014edca388f22901a7102946b9c53c3b540b04 /devtools
parent2eecde612aff61c4c9631276a634a1c5eec322d1 (diff)
downloadscummvm-rg350-16bf0e454f831765a59cc6ace4d8a855196778c8.tar.gz
scummvm-rg350-16bf0e454f831765a59cc6ace4d8a855196778c8.tar.bz2
scummvm-rg350-16bf0e454f831765a59cc6ace4d8a855196778c8.zip
DEVTOOLS: Fix Missing Free in SCUMM fontdata tool.
This is part of the fix for bug Trac #10655.
Diffstat (limited to 'devtools')
-rw-r--r--devtools/make-scumm-fontdata.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/devtools/make-scumm-fontdata.c b/devtools/make-scumm-fontdata.c
index 73b21846ec..24057ac4cb 100644
--- a/devtools/make-scumm-fontdata.c
+++ b/devtools/make-scumm-fontdata.c
@@ -883,5 +883,8 @@ int main() {
printf("};\n");
+ free(specialCharsetData);
+ specialCharsetData = NULL;
+
return 0;
}