From e20a31d72b8838cdf31b568431b5ad78492c1481 Mon Sep 17 00:00:00 2001 From: Jamey Sharp Date: Sat, 2 Jun 2007 18:29:37 -0700 Subject: [PATCH] xcb_poll_for_event: Return already-read events before read(2)ing again. --- src/xcb_in.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/xcb_in.c b/src/xcb_in.c index 1cb6b69..2997de4 100644 --- a/src/xcb_in.c +++ b/src/xcb_in.c @@ -403,7 +403,8 @@ xcb_generic_event_t *xcb_poll_for_event(xcb_connection_t *c) { _xcb_lock_io(c); /* FIXME: follow X meets Z architecture changes. */ - if(_xcb_in_read(c)) /* _xcb_in_read shuts down the connection on error */ + ret = get_event(c); + if(!ret && _xcb_in_read(c)) /* _xcb_in_read shuts down the connection on error */ ret = get_event(c); _xcb_unlock_io(c); } -- 2.34.1