]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed crash on incorrect HTML input caused by uninitialized variable
authorVáclav Slavík <vslavik@fastmail.fm>
Mon, 31 May 2004 22:07:30 +0000 (22:07 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Mon, 31 May 2004 22:07:30 +0000 (22:07 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27541 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/html/m_list.cpp

index 646baa8163cf91ee7f6a9e83b8165720d787352e..0e3776bb3952860ed7994eaf4d6195bcb5560801 100644 (file)
@@ -204,6 +204,7 @@ TAG_HANDLER_BEGIN(OLULLI, "OL,UL,LI")
 
     TAG_HANDLER_CONSTR(OLULLI)
     {
+        m_List = NULL;
         m_Numbering = 0;
     }