[Libreoffice-commits] core.git: Branch 'libreoffice-6-1' - svx/source

Caolán McNamara caolanm at redhat.com
Mon May 28 20:02:02 UTC 2018


 svx/source/dialog/charmap.cxx |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit aa9eaa396ef7bbe6955bb1053e4f76121ea38923
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Mon May 28 09:10:09 2018 +0100

    coverity#1435837 Uninitialized scalar field
    
    Change-Id: Ie2d78756019fe48167515c6022cd564a969cd90e
    Reviewed-on: https://gerrit.libreoffice.org/54937
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/svx/source/dialog/charmap.cxx b/svx/source/dialog/charmap.cxx
index fa9c3cebede3..0288524a6466 100644
--- a/svx/source/dialog/charmap.cxx
+++ b/svx/source/dialog/charmap.cxx
@@ -68,6 +68,8 @@ SvxShowCharSet::SvxShowCharSet(weld::ScrolledWindow* pScrolledWindow, const VclP
     : mxVirDev(rVirDev)
     , mxScrollArea(pScrolledWindow)
     , mxContext(comphelper::getProcessComponentContext())
+    , nX(0)
+    , nY(0)
     , maFontSize(0, 0)
     , maPosition(0,0)
     , mbRecalculateFont(true)


More information about the Libreoffice-commits mailing list