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

coverity#735654 Division or modulo by zero

Change-Id: I9ab09d65ba7587230de320e22a79e9c7224f4ade
üst 454b5d5a
...@@ -1108,7 +1108,7 @@ void ComboBox::GetMaxVisColumnsAndLines( sal_uInt16& rnCols, sal_uInt16& rnLines ...@@ -1108,7 +1108,7 @@ void ComboBox::GetMaxVisColumnsAndLines( sal_uInt16& rnCols, sal_uInt16& rnLines
if ( !IsDropDownBox() ) if ( !IsDropDownBox() )
{ {
Size aOutSz = mpImplLB->GetMainWindow().GetOutputSizePixel(); Size aOutSz = mpImplLB->GetMainWindow().GetOutputSizePixel();
rnCols = (sal_uInt16)(aOutSz.Width()/nCharWidth); rnCols = (nCharWidth > 0) ? (sal_uInt16)(aOutSz.Width()/nCharWidth) : 1;
rnLines = (sal_uInt16)(aOutSz.Height()/mpImplLB->GetEntryHeight()); rnLines = (sal_uInt16)(aOutSz.Height()/mpImplLB->GetEntryHeight());
} }
else else
......
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