summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--emfio/source/reader/emfreader.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/emfio/source/reader/emfreader.cxx b/emfio/source/reader/emfreader.cxx
index 68ff6752b69d..b5b86ef894a2 100644
--- a/emfio/source/reader/emfreader.cxx
+++ b/emfio/source/reader/emfreader.cxx
@@ -462,7 +462,7 @@ namespace emfio
{
tools::Rectangle aOutputRect = EmfReader::ReadRectangle();
- sal_uInt32 nCountFormats;
+ sal_uInt32 nCountFormats(0);
mpInputStream->ReadUInt32(nCountFormats);
if (nCountFormats < 1)
{
@@ -2325,7 +2325,7 @@ namespace emfio
tools::Rectangle EmfReader::ReadRectangle()
{
- sal_Int32 nLeft, nTop, nRight, nBottom;
+ sal_Int32 nLeft(0), nTop(0), nRight(0), nBottom(0);
mpInputStream->ReadInt32(nLeft);
mpInputStream->ReadInt32(nTop);
mpInputStream->ReadInt32(nRight);