From: Vadim Zeitlin Date: Fri, 1 Aug 2008 14:19:22 +0000 (+0000) Subject: fix warning about possible uninitialized variable with VC9 (part of #9803) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/76de2296f11750653010fe537a6e6046551cc647 fix warning about possible uninitialized variable with VC9 (part of #9803) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54899 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/html/htmltag.cpp b/src/html/htmltag.cpp index 3369fc82c3..0ad22af893 100644 --- a/src/html/htmltag.cpp +++ b/src/html/htmltag.cpp @@ -302,7 +302,7 @@ wxHtmlTag::wxHtmlTag(wxHtmlTag *parent, /* Find parameters and their values: */ - wxChar c; + wxChar c wxDUMMY_INITIALIZE(0); // fill-in name, params and begin pos: wxString::const_iterator i(pos+1);