From 16bf0e454f831765a59cc6ace4d8a855196778c8 Mon Sep 17 00:00:00 2001 From: D G Turner Date: Sat, 6 Oct 2018 13:21:03 +0100 Subject: DEVTOOLS: Fix Missing Free in SCUMM fontdata tool. This is part of the fix for bug Trac #10655. --- devtools/make-scumm-fontdata.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'devtools') 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; } -- cgit v1.2.3