diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-01-18 21:28:02 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-01-19 21:51:31 +0100 |
commit | f69e2f739ca3c23c9de055c8600c867e864cd4ff (patch) | |
tree | 53f38a54b25dc88933b07f58b5e45ff9b5b3f6f2 /starmath/source | |
parent | 25d159dd764d917a04e46819bb8efcc2a6067cd6 (diff) |
ofz#5475 Integer-overflow
Change-Id: I11d706c544698d57b75231e33e3d49f1ac1d4d73
Reviewed-on: https://gerrit.libreoffice.org/48159
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'starmath/source')
-rw-r--r-- | starmath/source/mathmlimport.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/source/mathmlimport.cxx b/starmath/source/mathmlimport.cxx index bf2caa0a8458..032feb61a260 100644 --- a/starmath/source/mathmlimport.cxx +++ b/starmath/source/mathmlimport.cxx @@ -3062,14 +3062,14 @@ void SmXMLImport::SetViewSettings(const Sequence<PropertyValue>& aViewProps) pValue->Value >>= nTmp; Size aSize( aRect.GetSize() ); aSize.Width() = nTmp; - aRect.SetSize( aSize ); + aRect.SaturatingSetSize(aSize); } else if (pValue->Name == "ViewAreaHeight" ) { pValue->Value >>= nTmp; Size aSize( aRect.GetSize() ); aSize.Height() = nTmp; - aRect.SetSize( aSize ); + aRect.SaturatingSetSize(aSize); } pValue++; } |