summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-06-25 07:30:57 +0200
committerJulien Nabet <serval2412@yahoo.fr>2013-06-25 07:30:57 +0200
commit692fa32997217d2357a5a6d36852090eb57ebeb8 (patch)
tree313b2867be39ecbaf4a7195cb90414a61c16319c /vcl
parentbfe4ea0d11d3ca83eed00b71394072c6049d7566 (diff)
Fix local var non initialized
Change-Id: I096742a1849d7fc8310aac8addd18b15cc40fea3
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/metaact.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/metaact.cxx b/vcl/source/gdi/metaact.cxx
index 64664d54f380..b8725ebf86f4 100644
--- a/vcl/source/gdi/metaact.cxx
+++ b/vcl/source/gdi/metaact.cxx
@@ -154,7 +154,7 @@ void MetaAction::Read( SvStream& rIStm, ImplMetaReadData* )
MetaAction* MetaAction::ReadMetaAction( SvStream& rIStm, ImplMetaReadData* pData )
{
MetaAction* pAction = NULL;
- sal_uInt16 nType;
+ sal_uInt16 nType = 0;
rIStm >> nType;