[Libreoffice-commits] .: sc/source

Kohei Yoshida kohei at kemper.freedesktop.org
Tue Dec 21 19:33:40 PST 2010


 sc/source/filter/html/htmlpars.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 0acb660da9251c409582661df75f634670bb57e1
Author: Kohei Yoshida <kyoshida at novell.com>
Date:   Tue Dec 21 22:32:39 2010 -0500

    cppcheck: initialize a pointer data member in ctor.

diff --git a/sc/source/filter/html/htmlpars.cxx b/sc/source/filter/html/htmlpars.cxx
index 2686f1f..b6aac9b 100644
--- a/sc/source/filter/html/htmlpars.cxx
+++ b/sc/source/filter/html/htmlpars.cxx
@@ -1879,7 +1879,8 @@ private:
 // ----------------------------------------------------------------------------
 
 ScHTMLTableMap::ScHTMLTableMap( ScHTMLTable& rParentTable ) :
-    mrParentTable( rParentTable )
+    mrParentTable(rParentTable),
+    mpCurrTable(NULL)
 {
 }
 


More information about the Libreoffice-commits mailing list