mshtml/htmltextcont: Initialize value (Coverity).

This commit is contained in:
Paul Vriens 2007-08-18 15:32:00 +02:00 committed by Alexandre Julliard
parent 4bac1e959d
commit c8c69304b7

View File

@ -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);