Bug 737463 - nsJARInputStream leaks if it is closed before the stream is inflated. r=mwu

This commit is contained in:
Chris Coulson 2012-04-11 17:55:22 -04:00
Родитель 1ce6cdf75f
Коммит 33f3a2b3e8
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -276,6 +276,9 @@ nsJARInputStream::IsNonBlocking(bool *aNonBlocking)
NS_IMETHODIMP
nsJARInputStream::Close()
{
if (mMode == MODE_INFLATE) {
inflateEnd(&mZs);
}
mMode = MODE_CLOSED;
mFd = nsnull;
return NS_OK;