From 95725c3030161709115d04a1862550666120af31 Mon Sep 17 00:00:00 2001 From: Michael Meeks Date: Fri, 24 Jan 2020 20:48:21 +0100 Subject: lok: status update - avoid SIGFPE on zero range. Change-Id: I75597696b529f833bbc699f66f5a4bcdc06748d1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87367 Tested-by: Jenkins CollaboraOffice Reviewed-by: Michael Meeks (cherry picked from commit c4b78d40aa43adeb90087c190d9fbee6a6d073ec) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87411 Reviewed-by: Jan Holesovsky Tested-by: Jan Holesovsky --- framework/source/helper/statusindicator.cxx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/framework/source/helper/statusindicator.cxx b/framework/source/helper/statusindicator.cxx index e729702125d6..25d67694c5df 100644 --- a/framework/source/helper/statusindicator.cxx +++ b/framework/source/helper/statusindicator.cxx @@ -105,11 +105,14 @@ void SAL_CALL StatusIndicator::setValue(sal_Int32 nValue) { if (comphelper::LibreOfficeKit::isActive()) { - int nPercent = (100*nValue)/m_nRange; - if (nPercent >= m_nLastCallbackPercent) + if (m_nRange > 0) { - comphelper::LibreOfficeKit::statusIndicatorSetValue(nPercent); - m_nLastCallbackPercent = nPercent; + int nPercent = (100*nValue)/m_nRange; + if (nPercent >= m_nLastCallbackPercent) + { + comphelper::LibreOfficeKit::statusIndicatorSetValue(nPercent); + m_nLastCallbackPercent = nPercent; + } } return; } -- cgit v1.2.3