diff options
author | Fabio Battaglia | 2009-03-30 21:04:19 +0000 |
---|---|---|
committer | Fabio Battaglia | 2009-03-30 21:04:19 +0000 |
commit | 9c5cf77287fd7672592bd3bf1605e7ca688d8a02 (patch) | |
tree | a714c124af4e05aa823208cb6ae49388525e079a | |
parent | 5f0083e9961d538fe4e156f38e4565363f3c7fd6 (diff) | |
download | scummvm-rg350-9c5cf77287fd7672592bd3bf1605e7ca688d8a02.tar.gz scummvm-rg350-9c5cf77287fd7672592bd3bf1605e7ca688d8a02.tar.bz2 scummvm-rg350-9c5cf77287fd7672592bd3bf1605e7ca688d8a02.zip |
vag: delete stream after use
svn-id: r39767
-rw-r--r-- | sound/vag.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/vag.cpp b/sound/vag.cpp index 01a7b58950..46e6a64233 100644 --- a/sound/vag.cpp +++ b/sound/vag.cpp @@ -37,6 +37,7 @@ VagStream::VagStream(Common::SeekableReadStream *stream, bool loop, int rate) : VagStream::~VagStream() { + delete _stream; } double f[5][2] = { { 0.0, 0.0 }, |