diff options
author | François Andriot <albator78@libertysurf.fr> | 2013-07-05 20:12:17 +0200 |
---|---|---|
committer | François Andriot <albator78@libertysurf.fr> | 2013-07-05 20:12:17 +0200 |
commit | 36430028f5b4a638323386f3b0e1454566476f5a (patch) | |
tree | 7cd4cee5db8a4f3e4c751713c8f2a4043930689c /redhat/applications/kcmautostart/kcmautostart-3.5.13-fix_crash_on_exit.patch | |
parent | b679e3718923d1e4f5a5a433346f39bf10ef0225 (diff) | |
download | tde-packaging-36430028f5b4a638323386f3b0e1454566476f5a.tar.gz tde-packaging-36430028f5b4a638323386f3b0e1454566476f5a.zip |
RPM Packaging: add kcmautostart
Diffstat (limited to 'redhat/applications/kcmautostart/kcmautostart-3.5.13-fix_crash_on_exit.patch')
-rw-r--r-- | redhat/applications/kcmautostart/kcmautostart-3.5.13-fix_crash_on_exit.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/redhat/applications/kcmautostart/kcmautostart-3.5.13-fix_crash_on_exit.patch b/redhat/applications/kcmautostart/kcmautostart-3.5.13-fix_crash_on_exit.patch new file mode 100644 index 000000000..da0940d89 --- /dev/null +++ b/redhat/applications/kcmautostart/kcmautostart-3.5.13-fix_crash_on_exit.patch @@ -0,0 +1,14 @@ +--- 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; ++ } + } + }; + |