diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-01 16:52:21 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-01 16:52:21 +0100 |
commit | e3dad060929de9beeeed2978f1b1427a91152073 (patch) | |
tree | 367069c0cbd29c09e0cf60066b504a0325b009a9 /vcl/source | |
parent | 36fe4a2d75cb009340f505c3cea7187e9e08ec7c (diff) |
valgrind: Conditional jump or move depends on uninitialised value
Change-Id: Ia0b22f7c394d1c2387d1cad7e3d99c79eaeca81a
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/gdi/metaact.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/metaact.cxx b/vcl/source/gdi/metaact.cxx index eaa511f064da..75f146572b73 100644 --- a/vcl/source/gdi/metaact.cxx +++ b/vcl/source/gdi/metaact.cxx @@ -1083,7 +1083,7 @@ void MetaPolygonAction::Read( SvStream& rIStm, ImplMetaReadData* ) if( aCompat.GetVersion() >= 2 ) // Version 2 { - sal_uInt8 bHasPolyFlags; + sal_uInt8 bHasPolyFlags(0); rIStm.ReadUChar( bHasPolyFlags ); if ( bHasPolyFlags ) maPoly.Read( rIStm ); |