[Libreoffice-commits] core.git: vcl/source
Julien Nabet
serval2412 at yahoo.fr
Mon Jun 24 22:31:26 PDT 2013
vcl/source/gdi/metaact.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 692fa32997217d2357a5a6d36852090eb57ebeb8
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Tue Jun 25 07:30:57 2013 +0200
Fix local var non initialized
Change-Id: I096742a1849d7fc8310aac8addd18b15cc40fea3
diff --git a/vcl/source/gdi/metaact.cxx b/vcl/source/gdi/metaact.cxx
index 64664d5..b8725eb 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;
More information about the Libreoffice-commits
mailing list