diff options
| author | Jonathan Gray | 2003-06-22 07:15:00 +0000 | 
|---|---|---|
| committer | Jonathan Gray | 2003-06-22 07:15:00 +0000 | 
| commit | 9d9336492c23a56c5cbb26836f1452838b9a27b7 (patch) | |
| tree | 40aaa5f10096e3d5f85a8f8b5e4f50bbdc61c157 | |
| parent | f002a6eee95186a8b37cfa535933e6d806481263 (diff) | |
| download | scummvm-rg350-9d9336492c23a56c5cbb26836f1452838b9a27b7.tar.gz scummvm-rg350-9d9336492c23a56c5cbb26836f1452838b9a27b7.tar.bz2 scummvm-rg350-9d9336492c23a56c5cbb26836f1452838b9a27b7.zip  | |
don't try to delete calloc'd mem either
svn-id: r8602
| -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 4b77be9b76..fc5d1e95a2 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -726,7 +726,7 @@ Scumm::~Scumm () {  	delete _imuse;  	delete _imuseDigital;  	delete _playerV2; -	delete _languageBuffer; +	free(_languageBuffer);  	free(_audioNames);  	delete _costumeRenderer;  | 
