aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gray2003-06-15 00:18:19 +0000
committerJonathan Gray2003-06-15 00:18:19 +0000
commit7d75334826fae998435a79591f0dc5b537fe195b (patch)
tree18d533b3d0a1e06c5f6faa0dec251dcefa734ffe
parent4f6573794be43fbe66c5f0e03ed22ac3aa07a53b (diff)
downloadscummvm-rg350-7d75334826fae998435a79591f0dc5b537fe195b.tar.gz
scummvm-rg350-7d75334826fae998435a79591f0dc5b537fe195b.tar.bz2
scummvm-rg350-7d75334826fae998435a79591f0dc5b537fe195b.zip
fix leak
svn-id: r8490
-rw-r--r--scumm/scummvm.cpp3
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);
}
//