diff options
author | Gregory Montoir | 2006-11-12 17:51:39 +0000 |
---|---|---|
committer | Gregory Montoir | 2006-11-12 17:51:39 +0000 |
commit | d992c66b29779d2005dc78b6cc65396efa632916 (patch) | |
tree | bf8803131bb29fb1d2bfb67bed801e3f1b0f83c6 /engines | |
parent | 701b803aff0bf29a2f1be72dbcfe7ad3054cba82 (diff) | |
download | scummvm-rg350-d992c66b29779d2005dc78b6cc65396efa632916.tar.gz scummvm-rg350-d992c66b29779d2005dc78b6cc65396efa632916.tar.bz2 scummvm-rg350-d992c66b29779d2005dc78b6cc65396efa632916.zip |
once parsed, queen2.jas buffer can be free'd.
svn-id: r24694
Diffstat (limited to 'engines')
-rw-r--r-- | engines/queen/logic.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/queen/logic.cpp b/engines/queen/logic.cpp index 150afb5a6b..3dfca256ad 100644 --- a/engines/queen/logic.cpp +++ b/engines/queen/logic.cpp @@ -253,6 +253,8 @@ void Logic::readQueenJas() { for (i = 1; i <= _numAFile; i++) { _aFile.push_back(queen2jas.nextLine()); } + + delete[] buf; } void Logic::start() { |