Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libqt5-qtbase for openSUSE:Factory checked in at 2021-04-14 13:05:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libqt5-qtbase (Old) and /work/SRC/openSUSE:Factory/.libqt5-qtbase.new.2401 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libqt5-qtbase" Wed Apr 14 13:05:08 2021 rev:118 rq:884869 version:5.15.2 Changes: -------- --- /work/SRC/openSUSE:Factory/libqt5-qtbase/libqt5-qtbase.changes 2021-02-11 12:46:04.817374693 +0100 +++ /work/SRC/openSUSE:Factory/.libqt5-qtbase.new.2401/libqt5-qtbase.changes 2021-04-14 13:05:09.549454053 +0200 @@ -1,0 +2,6 @@ +Tue Apr 13 07:06:06 UTC 2021 - Fabian Vogt <[email protected]> + +- Add patch to fix possible crash caused by GCC 11 build fix: + * 0001-Partially-revert-813a928c7c3cf98670b6043149880ed5c95.patch + +------------------------------------------------------------------- New: ---- 0001-Partially-revert-813a928c7c3cf98670b6043149880ed5c95.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libqt5-qtbase.spec ++++++ --- /var/tmp/diff_new_pack.w8lf9A/_old 2021-04-14 13:05:10.597455094 +0200 +++ /var/tmp/diff_new_pack.w8lf9A/_new 2021-04-14 13:05:10.601455098 +0200 @@ -72,6 +72,7 @@ Patch2001: 0002-Synthesize-Enter-LeaveEvent-for-accepted-QTabletEven.patch Patch2002: 0001-Fix-build-with-GCC-11-include-limits.patch Patch2003: 0002-Build-fixes-for-GCC-11.patch +Patch2004: 0001-Partially-revert-813a928c7c3cf98670b6043149880ed5c95.patch BuildRequires: cups-devel BuildRequires: double-conversion-devel BuildRequires: gcc-c++ ++++++ 0001-Partially-revert-813a928c7c3cf98670b6043149880ed5c95.patch ++++++ >From 45b201ea42f69510713ddd09fb092ed6f93ad1db Mon Sep 17 00:00:00 2001 From: Ulf Hermann <[email protected]> Date: Wed, 20 Jan 2021 10:42:36 +0100 Subject: [PATCH] Partially revert 813a928c7c3cf98670b6043149880ed5c955efb9 Otherwise ASAN complains about mismatched new/delete. Change-Id: I76ddcc388309e20055c93c68b9b6fa8a11b884e1 Reviewed-by: Andrei Golubev <[email protected]> Reviewed-by: Ville Voutilainen <[email protected]> (cherry picked from commit 606b03d0a35e71565c3a91588ef2db45b9262e27) --- src/corelib/tools/qsharedpointer_impl.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/corelib/tools/qsharedpointer_impl.h b/src/corelib/tools/qsharedpointer_impl.h index 4aee98af53..790c187cb9 100644 --- a/src/corelib/tools/qsharedpointer_impl.h +++ b/src/corelib/tools/qsharedpointer_impl.h @@ -155,6 +155,9 @@ namespace QtSharedPointer { #endif inline void checkQObjectShared(...) { } inline void setQObjectShared(...) { } + + inline void operator delete(void *ptr) { ::operator delete(ptr); } + inline void operator delete(void *, void *) { } }; // sizeof(ExternalRefCountData) = 12 (32-bit) / 16 (64-bit) -- 2.25.1
