Stefan Dirsch
7e6a980b1f
Copy from home:oertel:branches:openSUSE:Factory/xorg-x11-server via accept of submit request 35298 revision 8. Request was accepted with message: reviewed ok. OBS-URL: https://build.opensuse.org/request/show/35298 OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/xorg-x11-server?expand=0&rev=229
14 lines
572 B
Diff
14 lines
572 B
Diff
Index: os/connection.c
|
|
================================================================================
|
|
--- os/connection.c
|
|
+++ os/connection.c
|
|
@@ -999,7 +999,7 @@
|
|
do {
|
|
r = Select (curclient + 1, &tmask, NULL, NULL, ¬ime);
|
|
} while (r < 0 && (errno == EINTR || errno == EAGAIN));
|
|
- if (r < 0)
|
|
+ if (r < 0 && (errno == EBADF))
|
|
if (ConnectionTranslation[curclient] > 0)
|
|
CloseDownClient(clients[ConnectionTranslation[curclient]]);
|
|
mask &= ~((fd_mask)1 << curoff);
|