diff options
author | Jonathan Gray | 2003-06-15 00:18:19 +0000 |
---|---|---|
committer | Jonathan Gray | 2003-06-15 00:18:19 +0000 |
commit | 7d75334826fae998435a79591f0dc5b537fe195b (patch) | |
tree | 18d533b3d0a1e06c5f6faa0dec251dcefa734ffe | |
parent | 4f6573794be43fbe66c5f0e03ed22ac3aa07a53b (diff) | |
download | scummvm-rg350-7d75334826fae998435a79591f0dc5b537fe195b.tar.gz scummvm-rg350-7d75334826fae998435a79591f0dc5b537fe195b.tar.bz2 scummvm-rg350-7d75334826fae998435a79591f0dc5b537fe195b.zip |
fix leak
svn-id: r8490
-rw-r--r-- | scumm/scummvm.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index ca3e6c0ca4..b72943abd2 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -2147,6 +2147,9 @@ void Scumm::destroy() { if (_roomStrips) free(_roomStrips); + + if (_languageIndex) + free(_languageIndex); } // |