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

coverity#982429 Division or modulo by zero

Change-Id: I0c75bb8729b359390fb4026496c085f2056230ba
üst f63e2ac1
...@@ -2753,7 +2753,7 @@ void SfxHelpWindow_Impl::LoadConfig() ...@@ -2753,7 +2753,7 @@ void SfxHelpWindow_Impl::LoadConfig()
nExpandWidth = nWidth; nExpandWidth = nWidth;
nCollapseWidth = nExpandWidth * nTextSize / 100; nCollapseWidth = nExpandWidth * nTextSize / 100;
} }
else else if (nTextSize != 0)
{ {
nCollapseWidth = nWidth; nCollapseWidth = nWidth;
nExpandWidth = nCollapseWidth * 100 / nTextSize; nExpandWidth = nCollapseWidth * 100 / nTextSize;
......
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