diff options
author | marha <marha@users.sourceforge.net> | 2009-09-02 19:17:00 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-09-02 19:17:00 +0000 |
commit | 7842eeba5f0567175c41728d3eaae59fcbdef7a6 (patch) | |
tree | 53840a037bfe76f55afca5891b9eb689caa9094b /libX11/src/OpenDis.c | |
parent | e5072ee10b7ce789b67554e9000070c78f0f3d89 (diff) | |
download | vcxsrv-7842eeba5f0567175c41728d3eaae59fcbdef7a6.tar.gz vcxsrv-7842eeba5f0567175c41728d3eaae59fcbdef7a6.tar.bz2 vcxsrv-7842eeba5f0567175c41728d3eaae59fcbdef7a6.zip |
Switch to libX11-1.2.99.901.tar.gz
Diffstat (limited to 'libX11/src/OpenDis.c')
-rw-r--r-- | libX11/src/OpenDis.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libX11/src/OpenDis.c b/libX11/src/OpenDis.c index 29ac65c6a..230ae561f 100644 --- a/libX11/src/OpenDis.c +++ b/libX11/src/OpenDis.c @@ -790,6 +790,17 @@ _XBigReqHandler( void _XFreeDisplayStructure(Display *dpy) { + /* move all cookies in the EQ to the jar, then free them. */ + if (dpy->qfree) { + _XQEvent *qelt = dpy->qfree; + while (qelt) { + if (_XIsEventCookie(dpy, &qelt->event)) + _XStoreEventCookie(dpy, &qelt->event); + qelt = qelt->next; + } + } + if (dpy->cookiejar) + _XFreeEventCookies(dpy); while (dpy->ext_procs) { _XExtension *ext = dpy->ext_procs; dpy->ext_procs = ext->next; |