From 301e41ca2014cf4768971316f009d1aff27d7380 Mon Sep 17 00:00:00 2001 From: "bryner%netscape.com" Date: Fri, 5 Apr 2002 01:19:28 +0000 Subject: [PATCH] fix tinderbox orange caused by uninitialized variable git-svn-id: svn://10.0.0.236/trunk@118183 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/content/xml/document/src/nsXMLContentSink.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/content/xml/document/src/nsXMLContentSink.cpp b/mozilla/content/xml/document/src/nsXMLContentSink.cpp index 2f45aa92e07..99ecf950754 100644 --- a/mozilla/content/xml/document/src/nsXMLContentSink.cpp +++ b/mozilla/content/xml/document/src/nsXMLContentSink.cpp @@ -399,7 +399,7 @@ nsXMLContentSink::DidBuildModel(PRInt32 aQualityLevel) loader->RemoveObserver(this); } - PRUint32 documentLoadType; + PRUint32 documentLoadType = 0; if (mWebShell) { nsCOMPtr docShell(do_QueryInterface(mWebShell)); if (docShell) {