Kaydet (Commit) 623fa779 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1019408 Uninitialized scalar field

Change-Id: I63bc844627ca9eaf43f9b4b01ab987ef4f188afa
üst 424a9f1f
......@@ -670,8 +670,9 @@ SvxNumRule::SvxNumRule(const SvxNumRule& rCopy)
}
SvxNumRule::SvxNumRule( SvStream &rStream )
: nLevelCount(0)
{
sal_uInt16 nTmp16;
sal_uInt16 nTmp16(0);
rStream.ReadUInt16( nTmp16 ); // NUM_ITEM_VERSION
rStream.ReadUInt16( nLevelCount );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment