diff options
author | Roland Mainz <roland.mainz@nrubsig.org> | 2005-03-05 20:47:12 +0000 |
---|---|---|
committer | Roland Mainz <roland.mainz@nrubsig.org> | 2005-03-05 20:47:12 +0000 |
commit | 602209990dbbc96b4c5a96e2221a418cf29e613d (patch) | |
tree | e5fa10c2c13d0891760c16627fd2a85e7b67c892 | |
parent | d995fe631a5706de93a05fda498333442af3d207 (diff) |
//bugs.freedesktop.org/show_bug.cgi?id=2543) attachment #2019
(https://bugs.freedesktop.org/attachment.cgi?id=2019): Fix
|xf86SignalHandler()| which resets the signal handler before setting
the flag indicating a signal has been caught, theoretically allowing
the possibility of infinite recursion. Patch by Andrew Church
<xzilla@achurch.org>.
-rw-r--r-- | hw/xfree86/common/xf86Events.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xfree86/common/xf86Events.c b/hw/xfree86/common/xf86Events.c index 4b07955cb..dd38eecf4 100644 --- a/hw/xfree86/common/xf86Events.c +++ b/hw/xfree86/common/xf86Events.c @@ -49,7 +49,7 @@ */ /* $XConsortium: xf86Events.c /main/46 1996/10/25 11:36:30 kaleb $ */ -/* $XdotOrg: xc/programs/Xserver/hw/xfree86/common/xf86Events.c,v 1.4 2004/10/11 09:58:04 eich Exp $ */ +/* $XdotOrg: xc/programs/Xserver/hw/xfree86/common/xf86Events.c,v 1.6 2005/01/28 16:12:58 eich Exp $ */ /* [JCH-96/01/21] Extended std reverse map to four buttons. */ @@ -1288,9 +1288,9 @@ xf86SigHandler(int signo) } if (xf86SignalIntercept && (*xf86SignalIntercept < 0)) { + *xf86SignalIntercept = signo; /* Re-arm handler just in case */ (void) signal(signo, xf86SigHandler); - *xf86SignalIntercept = signo; return; } |