[Libreoffice-commits] core.git: svtools/source

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Sat Mar 20 10:30:13 UTC 2021


 svtools/source/brwbox/brwbox1.cxx |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit 50541a0b5b594adaf8b801eb485faf3555810e2f
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Fri Mar 19 15:44:31 2021 +0000
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Sat Mar 20 11:29:31 2021 +0100

    cid#1473953 Uninitialized scalar field
    
    Change-Id: I4d1bae818b36d613fd90840056dda5a22fa75c0d
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112776
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/svtools/source/brwbox/brwbox1.cxx b/svtools/source/brwbox/brwbox1.cxx
index fb393cca29e2..a8d778ffb2f4 100644
--- a/svtools/source/brwbox/brwbox1.cxx
+++ b/svtools/source/brwbox/brwbox1.cxx
@@ -78,6 +78,10 @@ void BrowseBox::ConstructImpl( BrowserMode nMode )
     nTopRow = 0;
     nCurRow = BROWSER_ENDOFSELECTION;
     nCurColId = 0;
+    nResizeX = 0;
+    nMinResizeX = 0;
+    nDragX = 0;
+    nResizeCol = 0;
     bResizing = false;
     bSelect = false;
     bSelecting = false;


More information about the Libreoffice-commits mailing list