[Scummvm-git-logs] scummvm master -> 16bf0e454f831765a59cc6ace4d8a855196778c8
digitall
dgturner at iee.org
Sat Oct 6 14:13:37 CEST 2018
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
16bf0e454f DEVTOOLS: Fix Missing Free in SCUMM fontdata tool.
Commit: 16bf0e454f831765a59cc6ace4d8a855196778c8
https://github.com/scummvm/scummvm/commit/16bf0e454f831765a59cc6ace4d8a855196778c8
Author: D G Turner (digitall at scummvm.org)
Date: 2018-10-06T13:21:03+01:00
Commit Message:
DEVTOOLS: Fix Missing Free in SCUMM fontdata tool.
This is part of the fix for bug Trac #10655.
Changed paths:
devtools/make-scumm-fontdata.c
diff --git a/devtools/make-scumm-fontdata.c b/devtools/make-scumm-fontdata.c
index 73b2184..24057ac 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;
}
More information about the Scummvm-git-logs
mailing list