diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-10-27 21:00:47 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-10-27 21:01:24 +0100 |
commit | a9297447b139b127723201771b5c225c9bd5efec (patch) | |
tree | e92739cb9045faf87239fc574d9d947582063844 /rsc/source | |
parent | 4beac67a2ba1e63e2b47ab54a34cb3e9af77b593 (diff) |
coverity#1374318 Uninitialized scalar field
Change-Id: I247b9d37b71ebba621b63026d597037450155e18
Diffstat (limited to 'rsc/source')
-rw-r--r-- | rsc/source/parser/rscdb.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rsc/source/parser/rscdb.cxx b/rsc/source/parser/rscdb.cxx index dca797526717..cd43e212b75b 100644 --- a/rsc/source/parser/rscdb.cxx +++ b/rsc/source/parser/rscdb.cxx @@ -43,6 +43,7 @@ RscTypCont::RscTypCont( RscError * pErrHdl, , nByteOrder( nOrder ) , aSearchPath( rSearchPath ) , nUniqueId(256) + , nFilePos( 0 ) , nPMId(RSC_VERSIONCONTROL +1) // at least one more , aBool( pHS->getID( "sal_Bool" ), RSC_NOTYPE ) , aShort( pHS->getID( "short" ), RSC_NOTYPE ) |