rpms/xterm/FC-4 xterm-208-bz180450.patch,NONE,1.1

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Mon Feb 13 16:43:15 UTC 2006


Author: jvdias

Update of /cvs/dist/rpms/xterm/FC-4
In directory cvs.devel.redhat.com:/tmp/cvs-serv31939

Added Files:
	xterm-208-bz180450.patch 
Log Message:
fix bug 180450: disallow Bell() if term widget not realized yet

xterm-208-bz180450.patch:
 misc.c |    4 ++++
 1 files changed, 4 insertions(+)

--- NEW FILE xterm-208-bz180450.patch ---
--- xterm-208/misc.c.bz180450	2006-01-03 21:10:25.000000000 -0500
+++ xterm-208/misc.c	2006-02-13 11:36:39.000000000 -0500
@@ -512,6 +512,10 @@
 
     TRACE(("BELL %d\n", percent));
 
+    if (!XtIsRealized((Widget) term)) {
+	return;
+    }
+
     /* has enough time gone by that we are allowed to ring
        the bell again? */
     if (screen->bellSuppressTime) {




More information about the fedora-cvs-commits mailing list