58842 - Fixing nsIAtom Leakage introduced by checkin to bug 27006.

r=pollmann
sr=vidur
This commit is contained in:
harishd%netscape.com 2000-11-02 22:00:04 +00:00
Родитель 208c7e0d69
Коммит 4499be637c
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -60,8 +60,8 @@ NS_IMETHODIMP nsObserverBase::NotifyWebShell(
if(NS_SUCCEEDED(res)) {
nsCOMPtr<nsIHTTPChannel> httpChannel(do_QueryInterface(channel,&res));
if(NS_SUCCEEDED(res)) {
nsIAtom* atom=nsnull;
httpChannel->GetRequestMethod(&atom);
nsCOMPtr<nsIAtom> atom=nsnull;
httpChannel->GetRequestMethod(getter_AddRefs(atom));
if(atom) {
nsAutoString method;
atom->ToString(method);