diff options
author | Eugene Sandulenko | 2016-05-18 12:31:47 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-05-18 12:38:15 +0200 |
commit | b0d90ccccf2c16694dca6ab2a1019cd7c4bd9c33 (patch) | |
tree | 9411767e92e0497cbd2800bed5dd6d0be372ebea /engines/access | |
parent | 733e499643a64281053b8c0e696744b333456047 (diff) | |
download | scummvm-rg350-b0d90ccccf2c16694dca6ab2a1019cd7c4bd9c33.tar.gz scummvm-rg350-b0d90ccccf2c16694dca6ab2a1019cd7c4bd9c33.tar.bz2 scummvm-rg350-b0d90ccccf2c16694dca6ab2a1019cd7c4bd9c33.zip |
ACCESS: Plug memory leak
Diffstat (limited to 'engines/access')
-rw-r--r-- | engines/access/bubble_box.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/access/bubble_box.cpp b/engines/access/bubble_box.cpp index 89c5d0727d..e55701900a 100644 --- a/engines/access/bubble_box.cpp +++ b/engines/access/bubble_box.cpp @@ -611,6 +611,7 @@ int BubbleBox::doBox_v1(int item, int box, int &btnSelected) { _vm->_events->showCursor(); warning("TODO: pop values"); _vm->_screen->restoreScreen(); + delete icons; return retval_; } |