Added NS_RELEASE of nsIUnicharInputStream interface in Load()

This commit is contained in:
troy%netscape.com 1999-02-14 05:20:34 +00:00
Родитель 25b61792ea
Коммит 5d53bf146e
2 изменённых файлов: 4 добавлений и 2 удалений

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

@ -126,7 +126,8 @@ nsProperties::Load(nsIInputStream *aIn)
}
}
mIn->Close();
mIn = nsnull;
NS_RELEASE(mIn);
NS_ASSERTION(!mIn, "unexpected remaining reference");
return NS_OK;
}

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

@ -126,7 +126,8 @@ nsProperties::Load(nsIInputStream *aIn)
}
}
mIn->Close();
mIn = nsnull;
NS_RELEASE(mIn);
NS_ASSERTION(!mIn, "unexpected remaining reference");
return NS_OK;
}