Fix for bug 171121. prevValue could be null therefore we need to use NS_IF_RELEASE instead of

NS_RELEASE. R=dougt, SR=sspitzer
This commit is contained in:
ducarroz%netscape.com 2002-09-27 17:49:08 +00:00
Родитель 27adc19ad1
Коммит f032354928
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -116,7 +116,7 @@ nsProperties::Set(const char* prop, nsISupports* value)
nsCStringKey key(prop);
nsISupports* prevValue = (nsISupports*)Put(&key, value);
NS_RELEASE(prevValue);
NS_IF_RELEASE(prevValue);
NS_IF_ADDREF(value);
return NS_OK;
}