Kaydet (Commit) 18952ac1 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1341875 Division or modulo by float zero

Change-Id: I3a07361bb66a62533475618c9b50f184d791a799
üst e32dcdda
......@@ -611,7 +611,7 @@ void LwpTableLayout::RegisterColumns()
}
// justifiable columns will share the remain width averagely
dDefaultColumn = dTableWidth/nJustifiableColumn;
dDefaultColumn = nJustifiableColumn ? dTableWidth/nJustifiableColumn : 0;
// register default column style
XFColStyle *pColStyle = new XFColStyle();
......
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