Added check to see if DocLoader exists before dereferencing the pointer...

This commit is contained in:
rpotts%netscape.com 1998-08-01 06:45:43 +00:00
Родитель 1cdeba207d
Коммит 92f005308f
2 изменённых файлов: 8 добавлений и 4 удалений

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

@ -263,8 +263,10 @@ nsWebShell::nsWebShell()
nsWebShell::~nsWebShell()
{
// Stop any pending document loads and destroy the loader...
mDocLoader->Stop();
NS_IF_RELEASE(mDocLoader);
if (nsnull != mDocLoader) {
mDocLoader->Stop();
NS_RELEASE(mDocLoader);
}
NS_IF_RELEASE(mInnerWindow);

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

@ -263,8 +263,10 @@ nsWebShell::nsWebShell()
nsWebShell::~nsWebShell()
{
// Stop any pending document loads and destroy the loader...
mDocLoader->Stop();
NS_IF_RELEASE(mDocLoader);
if (nsnull != mDocLoader) {
mDocLoader->Stop();
NS_RELEASE(mDocLoader);
}
NS_IF_RELEASE(mInnerWindow);