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/redhat/applications/kcmautostart/kcmautostart-3.5.13-fix_cra...

15 lines
364 B

--- kcmautostart/src/autostart.cpp.crash_on_exit 2013-05-10 23:35:31.443410887 +0200
+++ kcmautostart/src/autostart.cpp 2013-05-10 23:46:31.852926622 +0200
@@ -102,7 +102,10 @@
if (bisDesktop) service = new KService( fileName.path() );
}
~desktop() {
- delete service;
+ if(service) {
+ service = NULL;
+ delete service;
+ }
}
};