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

coverity#735663 Division or modulo by zero

Change-Id: I69410ebe3dcded9951bfa9e83844644147f4416a
üst 6fa813da
...@@ -1085,6 +1085,9 @@ void SdXMLExport::ImpWriteAutoLayoutInfos() ...@@ -1085,6 +1085,9 @@ void SdXMLExport::ImpWriteAutoLayoutInfos()
nRowCnt = nZwi; nRowCnt = nZwi;
} }
if (nColCnt == 0 || nRowCnt == 0)
break;
aPartSize.Width() = (aPartSize.Width() - ((nColCnt - 1) * nGapX)) / nColCnt; aPartSize.Width() = (aPartSize.Width() - ((nColCnt - 1) * nGapX)) / nColCnt;
aPartSize.Height() = (aPartSize.Height() - ((nRowCnt - 1) * nGapY)) / nRowCnt; aPartSize.Height() = (aPartSize.Height() - ((nRowCnt - 1) * nGapY)) / nRowCnt;
......
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