From 5cc8f508130c9c7d9ce2910feb15e8d019a6db15 Mon Sep 17 00:00:00 2001 From: "peterv%propagandism.org" Date: Wed, 19 May 2004 15:44:18 +0000 Subject: [PATCH] Fix for bug 243998 (Visiting the networkassociates, noggin, upromise crashes Mozilla & Firefox). r/sr=bz, a=tor. git-svn-id: svn://10.0.0.236/trunk@156587 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/content/html/content/src/nsHTMLImageElement.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/content/html/content/src/nsHTMLImageElement.cpp b/mozilla/content/html/content/src/nsHTMLImageElement.cpp index e3052fda7bc..e9737827697 100644 --- a/mozilla/content/html/content/src/nsHTMLImageElement.cpp +++ b/mozilla/content/html/content/src/nsHTMLImageElement.cpp @@ -177,7 +177,7 @@ NS_NewHTMLImageElement(nsIHTMLContent** aResult, nsINodeInfo *aNodeInfo) NS_ENSURE_SUCCESS(rv, rv); } - nsHTMLImageElement* it = new nsHTMLImageElement(aNodeInfo); + nsHTMLImageElement* it = new nsHTMLImageElement(nodeInfo); if (!it) { return NS_ERROR_OUT_OF_MEMORY; }