diff --git a/mozilla/docshell/base/nsWebShell.cpp b/mozilla/docshell/base/nsWebShell.cpp index 0c540da63d4..d822fb67929 100644 --- a/mozilla/docshell/base/nsWebShell.cpp +++ b/mozilla/docshell/base/nsWebShell.cpp @@ -4130,8 +4130,8 @@ nsWebShell::OnStatus(nsIChannel* channel, nsISupports* ctxt, #ifndef BUG_16273_FIXED //free the message- - PRUnichar* temp = (PRUnichar*) aMsg; - CRTFREEIF(temp); + PRUnichar* tempChar = (PRUnichar*) aMsg; + CRTFREEIF(tempChar); #endif return rv; } diff --git a/mozilla/webshell/src/nsWebShell.cpp b/mozilla/webshell/src/nsWebShell.cpp index 0c540da63d4..d822fb67929 100644 --- a/mozilla/webshell/src/nsWebShell.cpp +++ b/mozilla/webshell/src/nsWebShell.cpp @@ -4130,8 +4130,8 @@ nsWebShell::OnStatus(nsIChannel* channel, nsISupports* ctxt, #ifndef BUG_16273_FIXED //free the message- - PRUnichar* temp = (PRUnichar*) aMsg; - CRTFREEIF(temp); + PRUnichar* tempChar = (PRUnichar*) aMsg; + CRTFREEIF(tempChar); #endif return rv; }