Fix build bustage on windows.

This commit is contained in:
gagan%netscape.com 1999-10-13 11:50:14 +00:00
parent 5b9f510ea1
commit f488dd54a9
2 changed files with 4 additions and 2 deletions

View File

@ -4130,7 +4130,8 @@ nsWebShell::OnStatus(nsIChannel* channel, nsISupports* ctxt,
#ifndef BUG_16273_FIXED #ifndef BUG_16273_FIXED
//free the message- //free the message-
CRTFREEIF((PRUnichar*)aMsg); PRUnichar* temp = (PRUnichar*) aMsg;
CRTFREEIF(temp);
#endif #endif
return rv; return rv;
} }

View File

@ -4130,7 +4130,8 @@ nsWebShell::OnStatus(nsIChannel* channel, nsISupports* ctxt,
#ifndef BUG_16273_FIXED #ifndef BUG_16273_FIXED
//free the message- //free the message-
CRTFREEIF((PRUnichar*)aMsg); PRUnichar* temp = (PRUnichar*) aMsg;
CRTFREEIF(temp);
#endif #endif
return rv; return rv;
} }