diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-02-17 09:33:07 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-02-17 09:33:07 +0000 |
commit | 2a7db22c3825acdb0c36a9cefd5736d73e4fefbf (patch) | |
tree | 3132a5949edb899ed8a5920ec86a5c08315ed42c | |
parent | bc56c5f8817526679c65e7f49682b6595583c588 (diff) |
coverity#707555 Uninitialized scalar variable
Change-Id: Ibba9295d34a0089127c6e09f59f9c0de6be386c5
-rw-r--r-- | sw/source/core/text/inftxt.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/text/inftxt.cxx b/sw/source/core/text/inftxt.cxx index ad14afb98ac1..0819465c6118 100644 --- a/sw/source/core/text/inftxt.cxx +++ b/sw/source/core/text/inftxt.cxx @@ -617,7 +617,7 @@ void SwTxtPaintInfo::_DrawText( const XubString &rText, const SwLinePortion &rPo rPor.InNumberGrp() ) ? 0 : GetSpaceAdd(); if ( nSpaceAdd ) { - xub_StrLen nCharCnt; + xub_StrLen nCharCnt = 0; // #i41860# Thai justified alignment needs some // additional information: aDrawInf.SetNumberOfBlanks( rPor.InTxtGrp() ? |