mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
VIDEO: Fix memory leak in TrueMotion1 header buffer
Cleanup _buf before returning, even if we don't actually decode
This commit is contained in:
parent
f6b61291a7
commit
9b02777155
@ -400,11 +400,14 @@ void TrueMotion1Decoder::decode16() {
|
||||
const Graphics::Surface *TrueMotion1Decoder::decodeImage(Common::SeekableReadStream *stream) {
|
||||
decodeHeader(stream);
|
||||
|
||||
if (compressionTypes[_header.compression].algorithm == ALGO_NOP)
|
||||
if (compressionTypes[_header.compression].algorithm == ALGO_NOP) {
|
||||
delete[] _buf;
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (compressionTypes[_header.compression].algorithm == ALGO_RGB24H) {
|
||||
warning("Unhandled TrueMotion1 24bpp frame");
|
||||
delete[] _buf;
|
||||
return 0;
|
||||
} else
|
||||
decode16();
|
||||
|
Loading…
x
Reference in New Issue
Block a user