You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tde-packaging/opensuse/core/libdbus-1-tqt-0/fix_circular_destructor.patch

15 lines
671 B

Index: tools/dbusxml2qt3/methodgen.cpp
===================================================================
--- tools/dbusxml2qt3/methodgen.cpp (Revision 805416)
+++ tools/dbusxml2qt3/methodgen.cpp (Arbeitskopie)
@@ -1740,7 +1740,8 @@
stream << " for (; it != endIt; ++it)" << endl;
stream << " {" << endl;
stream << " QDBusObjectBase* interface = it.data();" << endl;
- stream << " delete interface;" << endl;
+ stream << " if (interface != this)" << endl;
+ stream << " delete interface;" << endl;
stream << " }" << endl;
stream << " interfaces.clear();" << endl;
stream << "}" << endl;