diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-12-08 20:38:44 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-12-08 20:39:59 +0000 |
commit | dcbef55a111405b4540856bf6910f81bce9785bb (patch) | |
tree | ac042388630317a67266c2f5c6c56d7e97dc8566 | |
parent | 3149c04bb7fd79ae1b206a257b8195a209fa34c7 (diff) |
valgrind: jump or move depends on uninitialised value
Change-Id: I02e507f4b7d78efacc5b735ca24adb83633749b9
-rw-r--r-- | lotuswordpro/source/filter/lwpfilter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpfilter.cxx b/lotuswordpro/source/filter/lwpfilter.cxx index b6c2e78fb9a9..5326e0cc99c3 100644 --- a/lotuswordpro/source/filter/lwpfilter.cxx +++ b/lotuswordpro/source/filter/lwpfilter.cxx @@ -149,8 +149,8 @@ using namespace OpenStormBento; { SvStream * pDecompressed = nullptr; - sal_uInt32 nTag; pStream->Seek(0x10); + sal_uInt32 nTag(0); pStream->ReadUInt32( nTag ); if (nTag != 0x3750574c) // "LWP7" { |