summaryrefslogtreecommitdiffstats
path: root/sc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-12-20 12:50:10 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-12-20 12:50:10 +0000
commit4645a24805fb69c75c69547babd498ec913e61a0 (patch)
tree84c50086cfbc791b5d21bde81637d137dba4caba /sc
parentpretty up exception message for display in StarBasic dialogs (diff)
downloadcore-4645a24805fb69c75c69547babd498ec913e61a0.tar.gz
core-4645a24805fb69c75c69547babd498ec913e61a0.zip
valgrind: uninitialized values used
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/table1.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/core/data/table1.cxx b/sc/source/core/data/table1.cxx
index 06b8203c15d2..93285a294c1c 100644
--- a/sc/source/core/data/table1.cxx
+++ b/sc/source/core/data/table1.cxx
@@ -239,7 +239,9 @@ ScTable::ScTable( ScDocument* pDoc, SCTAB nNewTab, const rtl::OUString& rNewName
nLinkMode( 0 ),
aPageStyle( ScGlobal::GetRscString(STR_STYLENAME_STANDARD) ),
nRepeatStartX( SCCOL_REPEAT_NONE ),
+ nRepeatEndX( SCCOL_REPEAT_NONE ),
nRepeatStartY( SCROW_REPEAT_NONE ),
+ nRepeatEndY( SCROW_REPEAT_NONE ),
pTabProtection( NULL ),
pColWidth( NULL ),
mpRowHeights( static_cast<ScFlatUInt16RowSegments*>(NULL) ),