ofz#7244 Integer overflow

Change-Id: Ied769220da5512f9fa81a8ee46f724de33dae543
Reviewed-on: https://gerrit.libreoffice.org/52294
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
diff --git a/vcl/source/font/fontselect.cxx b/vcl/source/font/fontselect.cxx
index 927e110..8e62cf0 100644
--- a/vcl/source/font/fontselect.cxx
+++ b/vcl/source/font/fontselect.cxx
@@ -18,6 +18,7 @@
 */

#include <sal/config.h>
#include <o3tl/safeint.hxx>

#include <PhysicalFontFace.hxx>
#include <svdata.hxx>
@@ -62,9 +63,9 @@ FontSelectPatternAttributes::FontSelectPatternAttributes( const vcl::Font& rFont

    // normalize width and height
    if( mnHeight < 0 )
        mnHeight = -mnHeight;
        mnHeight = o3tl::saturating_toggle_sign(mnHeight);
    if( mnWidth < 0 )
        mnWidth = -mnWidth;
        mnWidth = o3tl::saturating_toggle_sign(mnWidth);
}