bug 17339, document.cookie throwing exception, r=neeti

This commit is contained in:
morse%netscape.com 1999-10-27 22:43:49 +00:00
Родитель c478b18e85
Коммит e6ef0218a9
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -165,13 +165,11 @@ nsCookieService::GetCookieString(nsIURI *aURL, nsString& aCookie) {
if (nsnull != cookie) {
aCookie.SetString(cookie);
nsCRT::free(cookie);
result = NS_OK;
} else {
aCookie.SetString("");
result = NS_ERROR_FAILURE;
}
nsCRT::free(spec);
return result;
return NS_OK;
}
NS_IMETHODIMP