diff options
author | Jonathan Gray | 2003-06-22 06:53:28 +0000 |
---|---|---|
committer | Jonathan Gray | 2003-06-22 06:53:28 +0000 |
commit | f002a6eee95186a8b37cfa535933e6d806481263 (patch) | |
tree | 62ba702d94e84d69833c882ea2cbb5bb67fa1a26 /scumm | |
parent | 81c1b74202eb76902af819496f3e06a11b78c328 (diff) | |
download | scummvm-rg350-f002a6eee95186a8b37cfa535933e6d806481263.tar.gz scummvm-rg350-f002a6eee95186a8b37cfa535933e6d806481263.tar.bz2 scummvm-rg350-f002a6eee95186a8b37cfa535933e6d806481263.zip |
don't try to delete malloc'd memory
svn-id: r8601
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/scummvm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index 3790e82fc4..4b77be9b76 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -727,7 +727,7 @@ Scumm::~Scumm () { delete _imuseDigital; delete _playerV2; delete _languageBuffer; - delete _audioNames; + free(_audioNames); delete _costumeRenderer; |