Fix for crash that occurs in the unarj's fallback code - _uncompressedData is not allocated when ARJ files have not been opened

svn-id: r32480
This commit is contained in:
Filippos Karapetis 2008-06-01 21:57:30 +00:00
parent cb103cb9e2
commit 8a0abfb045

View file

@ -291,6 +291,7 @@ void ArjFile::close() {
if (_fallBack) {
_currArchive.close();
return;
} else {
delete _uncompressed;
}