diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | NEWS | 4 | ||||
-rwxr-xr-x | control-center | 2 |
3 files changed, 7 insertions, 1 deletions
@@ -1,4 +1,4 @@ -VERSION = 13.23 +VERSION = 13.23.1 NAME = drakconf GITNAME = control-center SUBDIRS = po pixmaps polkit #data @@ -1,3 +1,7 @@ +Version 13.23.1 - 2 February 2021, by Pascal Terjan + +- Workaround a segfault on exit (mga#26944) + Version 13.23 - 11 November 2019, by Thomas Backlund - translation updates diff --git a/control-center b/control-center index fe20eb38..60ecafc8 100755 --- a/control-center +++ b/control-center @@ -1292,6 +1292,8 @@ sub quit_global() { WIDTH => $x, }); gtkset_mousecursor_normal(); + # Workaround a segfault on exit by manually destroying the window before exit() + $window_global->destroy; standalone::exit(0); } |