Kaydet (Commit) 1939a79c authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1399429 Uninitialized scalar variable

Change-Id: I7f10d609b9c031f4b51843bbd4ba945dc23ab169
üst 1c64b1aa
...@@ -346,7 +346,7 @@ void LwpParaStyle::ApplyParaBorder(XFParaStyle* pParaStyle, LwpParaBorderOverrid ...@@ -346,7 +346,7 @@ void LwpParaStyle::ApplyParaBorder(XFParaStyle* pParaStyle, LwpParaBorderOverrid
// apply 4 borders respectively // apply 4 borders respectively
LwpBorderStuff::BorderType pType[] = { LwpBorderStuff::LEFT, LwpBorderStuff::RIGHT, LwpBorderStuff::BorderType pType[] = { LwpBorderStuff::LEFT, LwpBorderStuff::RIGHT,
LwpBorderStuff::TOP, LwpBorderStuff::BOTTOM }; LwpBorderStuff::TOP, LwpBorderStuff::BOTTOM };
float pMarginValue[4]; float pMarginValue[4] = { 0.0, 0.0, 0.0, 0.0 };
for (sal_uInt8 nC = 0; nC < 4; nC++) for (sal_uInt8 nC = 0; nC < 4; nC++)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment