sc/source/ui/condformat/condformateasydlg.cxx |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 321166fe6edd81d2ee9a4e0b83424096bb277488
Author:     Caolán McNamara <caolan.mcnam...@collabora.com>
AuthorDate: Sat Aug 17 14:17:43 2024 +0100
Commit:     Caolán McNamara <caolan.mcnam...@collabora.com>
CommitDate: Sat Aug 17 16:27:50 2024 +0200

    cid#1616505 Uninitialized scalar field
    
    Change-Id: I6521d25f7763ebe7f1b0d1213ab641c284c5e228
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171971
    Reviewed-by: Caolán McNamara <caolan.mcnam...@collabora.com>
    Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com>

diff --git a/sc/source/ui/condformat/condformateasydlg.cxx 
b/sc/source/ui/condformat/condformateasydlg.cxx
index 4042507036c9..5955304a86ca 100644
--- a/sc/source/ui/condformat/condformateasydlg.cxx
+++ b/sc/source/ui/condformat/condformateasydlg.cxx
@@ -62,6 +62,9 @@ 
ConditionalFormatEasyDialog::ConditionalFormatEasyDialog(SfxBindings* pBindings,
     , mpParent(pParent)
     , mpViewData(pViewData)
     , mpDocument(&mpViewData->GetDocument())
+    , mbIsManaged(false)
+    , mnFormatKey(0)
+    , mnEntryIndex(0)
     , mxNumberEntry(m_xBuilder->weld_entry("entryNumber"))
     , mxNumberEntry2(m_xBuilder->weld_entry("entryNumber2"))
     , mxAllInputs(m_xBuilder->weld_container("allInputs"))

Reply via email to