From c8c69304b765cac211bded1fa026eb6378f90fc8 Mon Sep 17 00:00:00 2001 From: Paul Vriens Date: Sat, 18 Aug 2007 15:32:00 +0200 Subject: [PATCH] mshtml/htmltextcont: Initialize value (Coverity). --- dlls/mshtml/htmltextcont.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mshtml/htmltextcont.c b/dlls/mshtml/htmltextcont.c index ed079db0214..e67e668759f 100644 --- a/dlls/mshtml/htmltextcont.c +++ b/dlls/mshtml/htmltextcont.c @@ -102,7 +102,7 @@ static HRESULT WINAPI HTMLTextContainer_get_scrollHeight(IHTMLTextContainer *ifa { HTMLTextContainer *This = HTMLTEXTCONT_THIS(iface); nsIDOMNSHTMLElement *nselem; - PRInt32 height; + PRInt32 height = 0; nsresult nsres; TRACE("(%p)->(%p)\n", This, p);