Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package kmail for openSUSE:Factory checked in at 2024-03-18 16:43:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kmail (Old) and /work/SRC/openSUSE:Factory/.kmail.new.1905 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kmail" Mon Mar 18 16:43:53 2024 rev:93 rq:1158971 version:24.02.0 Changes: -------- --- /work/SRC/openSUSE:Factory/kmail/kmail.changes 2024-03-11 15:28:48.723107346 +0100 +++ /work/SRC/openSUSE:Factory/.kmail.new.1905/kmail.changes 2024-03-18 16:44:03.629855171 +0100 @@ -1,0 +2,6 @@ +Mon Mar 18 11:33:21 UTC 2024 - Christophe Marin <christo...@krop.fr> + +- Add fix for a potential kontact crash (kde#483844): + * 0001-Fix-483844-kontact-segfaults-on-startup.patch + +------------------------------------------------------------------- New: ---- 0001-Fix-483844-kontact-segfaults-on-startup.patch BETA DEBUG BEGIN: New:- Add fix for a potential kontact crash (kde#483844): * 0001-Fix-483844-kontact-segfaults-on-startup.patch BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kmail.spec ++++++ --- /var/tmp/diff_new_pack.J1f9M0/_old 2024-03-18 16:44:05.013906242 +0100 +++ /var/tmp/diff_new_pack.J1f9M0/_new 2024-03-18 16:44:05.013906242 +0100 @@ -32,6 +32,8 @@ Source1: %{name}-%{version}.tar.xz.sig Source2: applications.keyring %endif +# PATCH-FIX-UPSTREAM +Patch0: 0001-Fix-483844-kontact-segfaults-on-startup.patch BuildRequires: kf6-extra-cmake-modules >= %{kf6_version} BuildRequires: libgpgmepp-devel BuildRequires: cmake(KF6Bookmarks) >= %{kf6_version} ++++++ 0001-Fix-483844-kontact-segfaults-on-startup.patch ++++++ >From 6f61ea119e882b1221bd9ec7dcd0c88f77e3ac45 Mon Sep 17 00:00:00 2001 From: Laurent Montel <mon...@kde.org> Date: Mon, 18 Mar 2024 07:00:04 +0100 Subject: [PATCH] Fix 483844: kontact segfaults on startup I can't reproduce it but I can avoid it. I prefere fix real bug but without reproducing it... BUG: 483844 FIXED-IN: 24.02.1 --- src/kmmainwidget.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/kmmainwidget.cpp b/src/kmmainwidget.cpp index 7f9b4a1ea..d82cd888d 100644 --- a/src/kmmainwidget.cpp +++ b/src/kmmainwidget.cpp @@ -4060,6 +4060,9 @@ void KMMainWidget::updateHtmlMenuEntry() //----------------------------------------------------------------------------- void KMMainWidget::updateFolderMenu() { + if (!mFolderMailingListPropertiesAction) { + return; + } if (!CommonKernel->outboxCollectionFolder().isValid()) { QTimer::singleShot(1s, this, &KMMainWidget::updateFolderMenu); return; -- 2.44.0