diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-10 14:24:08 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-10 21:12:58 +0100 |
commit | 2ab8d88ca91654c637e3603816b3dd6ee84aaa3d (patch) | |
tree | 276b58d0624d30eaa70066ecec34dd489c5756be /svtools | |
parent | 84e818dbd33d0a10d125e2cbd04bf2d963f2b5fd (diff) |
coverity#708336 Uninitialized scalar field
Change-Id: Ie4b6ea734d8ab77060848cd813b44d0727eb47c4
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/svrtf/svparser.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/svtools/source/svrtf/svparser.cxx b/svtools/source/svrtf/svparser.cxx index 890060df069e..6000dde1a79d 100644 --- a/svtools/source/svrtf/svparser.cxx +++ b/svtools/source/svrtf/svparser.cxx @@ -69,6 +69,7 @@ SvParser::SvParser( SvStream& rIn, sal_uInt8 nStackSize ) , eState( SVPAR_NOTSTARTED ) , eSrcEnc( RTL_TEXTENCODING_DONTKNOW ) , nNextChPos(0) + , nNextCh(0) , bDownloadingFile(false) , bUCS2BSrcEnc(false) , bSwitchToUCS2(false) |