Fix for 80105 -- adding a null-check before release, r=peterl, sr=attinasi, a=chofmann

This commit is contained in:
av%netscape.com 2001-06-21 00:15:29 +00:00
Родитель ac2c6d9ba3
Коммит dd7fa38258
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -951,7 +951,7 @@ pluginInstanceOwner :: ~pluginInstanceOwner()
if(host) if(host)
host->StopPluginInstance(mInstance); host->StopPluginInstance(mInstance);
} }
NS_RELEASE(mInstance); NS_IF_RELEASE(mInstance);
} }
mWindow = nsnull; mWindow = nsnull;

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

@ -951,7 +951,7 @@ pluginInstanceOwner :: ~pluginInstanceOwner()
if(host) if(host)
host->StopPluginInstance(mInstance); host->StopPluginInstance(mInstance);
} }
NS_RELEASE(mInstance); NS_IF_RELEASE(mInstance);
} }
mWindow = nsnull; mWindow = nsnull;