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

New commits:
commit f74e50d705ed2c8ae3a42ab8bddd4b57031a5d8e
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 20:09:26 2024 +0200

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

diff --git a/sc/source/ui/condformat/condformateasydlg.cxx 
b/sc/source/ui/condformat/condformateasydlg.cxx
index 835f5de9eddc..12ee8dc6f618 100644
--- a/sc/source/ui/condformat/condformateasydlg.cxx
+++ b/sc/source/ui/condformat/condformateasydlg.cxx
@@ -64,6 +64,8 @@ 
ConditionalFormatEasyDialog::ConditionalFormatEasyDialog(SfxBindings* pBindings,
     , mpViewData(pViewData)
     , mpDocument(&mpViewData->GetDocument())
     , mbIsManaged(false)
+    , mnFormatKey(0)
+    , mnEntryIndex(0)
     , mxNumberEntry(m_xBuilder->weld_entry(u"entryNumber"_ustr))
     , mxNumberEntry2(m_xBuilder->weld_entry(u"entryNumber2"_ustr))
     , mxAllInputs(m_xBuilder->weld_container(u"allInputs"_ustr))

Reply via email to