File: 06_wm_focus_crash.patch

package info (click to toggle)
xscreensaver 6.09%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 63,848 kB
  • sloc: ansic: 503,539; xml: 10,207; makefile: 10,016; perl: 7,146; sh: 4,316; asm: 3,513; objc: 3,359
file content (20 lines) | stat: -rw-r--r-- 832 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Description: Comment out error handler registration
 It would interfere with GTK's own error handling.
 Workaround until GTK possibly fixes it.
Forwarded: not-needed
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1030909
Author: Tormod Volden <debian.tormod@gmail.com>

Index: xscreensaver-git/driver/demo-Gtk.c
===================================================================
--- xscreensaver-git.orig/driver/demo-Gtk.c
+++ xscreensaver-git/driver/demo-Gtk.c
@@ -5067,7 +5067,7 @@ xscreensaver_window_realize (GtkWidget *
       XtAppCreateShell (progname, progclass, applicationShellWidgetClass,
                         s->dpy, 0, 0);
       p->db = XtDatabase (s->dpy);
-      XSetErrorHandler (x_error);
+      /* XSetErrorHandler (x_error); */
 
       signal (SIGPIPE, SIG_IGN);  /* Is this necessary? */