diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-04-05 23:07:14 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-04-06 13:11:27 -0500 |
commit | 0b5798ee59b8152b0a917437144e8c078e5feb0a (patch) | |
tree | d04cb93ba67f78b8c5a3378cbbfab65fa5a904c3 /svl | |
parent | ac13f88b5d8b1cf0506fe464bfd8a2a0bd28e849 (diff) |
coverity#708246: Unitialized scalar field
Change-Id: I3136db825bea07b4b5977b6067db91375720ebed
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/filerec/filerec.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/svl/source/filerec/filerec.cxx b/svl/source/filerec/filerec.cxx index bdbad2a6da2f..f76aba554228 100644 --- a/svl/source/filerec/filerec.cxx +++ b/svl/source/filerec/filerec.cxx @@ -604,6 +604,8 @@ SfxMultiRecordReader::SfxMultiRecordReader( SvStream *pStream, sal_uInt16 nTag ) , _nContentSize(0) , _nContentCount(0) , _nContentNo(0) + , _nContentTag( 0 ) + , _nContentVer( 0 ) { // Position im Stream merken, um im Fehlerfall zur"uck-seeken zu k"onnen _nStartPos = pStream->Tell(); |