From: Chris Bainbridge Date: Fri, 8 Jan 2016 20:44:04 +0000 (+0000) Subject: kconfig: fix qconf segfault by deleting heap objects X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=5b61c7bd25f13daa58f2507991e87e990d7c6010;p=linux-beck.git kconfig: fix qconf segfault by deleting heap objects On Debian stable (qt-4.8.6) 'make xconfig' intermittently fails due to qconf segfaulting at exit time in QXcbEventReader. The cause of this is destructors on the heap objects never being called, so fix this by properly deleting the heap objects before exit. Signed-off-by: Chris Bainbridge Signed-off-by: Michal Marek --- diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index 91b7e6fbc364..fc5555992220 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc @@ -1863,6 +1863,8 @@ int main(int ac, char** av) configSettings->endGroup(); delete configSettings; + delete v; + delete configApp; return 0; }