summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/mathtype.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/starmath/source/mathtype.cxx b/starmath/source/mathtype.cxx
index b32ad0c555ec..fde2defe51e5 100644
--- a/starmath/source/mathtype.cxx
+++ b/starmath/source/mathtype.cxx
@@ -614,16 +614,16 @@ static void lcl_AppendDummyTerm(OUStringBuffer &rRet)
void MathType::HandleNudge()
{
- sal_uInt8 nXNudge;
- pS->ReadUChar( nXNudge );
- sal_uInt8 nYNudge;
- pS->ReadUChar( nYNudge );
+ sal_uInt8 nXNudge(0);
+ pS->ReadUChar(nXNudge);
+ sal_uInt8 nYNudge(0);
+ pS->ReadUChar(nYNudge);
if (nXNudge == 128 && nYNudge == 128)
{
- sal_uInt16 nXLongNudge;
- sal_uInt16 nYLongNudge;
- pS->ReadUInt16( nXLongNudge );
- pS->ReadUInt16( nYLongNudge );
+ sal_uInt16 nXLongNudge(0);
+ sal_uInt16 nYLongNudge(0);
+ pS->ReadUInt16(nXLongNudge);
+ pS->ReadUInt16(nYLongNudge);
}
}