diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-09-20 10:40:11 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:58:54 -0500 |
commit | 6b9b169c2746c0223f249700d7ff8a70feb8da62 (patch) | |
tree | f7064839446cccbbf5aa5a026677dc9be0145d21 /source4/libcli | |
parent | 8f85b3f77132279d8e79ff9a8a213515a3845fe0 (diff) | |
download | samba-6b9b169c2746c0223f249700d7ff8a70feb8da62.tar.gz samba-6b9b169c2746c0223f249700d7ff8a70feb8da62.tar.bz2 samba-6b9b169c2746c0223f249700d7ff8a70feb8da62.zip |
r2443: check return code of event_loop_once() to catch thet cases where the server
closes the connetion and we got EBADF from select() and event_loop_once() fails
metze
(This used to be commit 9c0e50a6f3d628156b4543d5ded89e06be696f64)
Diffstat (limited to 'source4/libcli')
-rw-r--r-- | source4/libcli/raw/rawrequest.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/libcli/raw/rawrequest.c b/source4/libcli/raw/rawrequest.c index 51c0c0b925..6536af3072 100644 --- a/source4/libcli/raw/rawrequest.c +++ b/source4/libcli/raw/rawrequest.c @@ -285,7 +285,9 @@ BOOL smbcli_request_receive(struct smbcli_request *req) /* keep receiving packets until this one is replied to */ while (req->state <= SMBCLI_REQUEST_RECV) { - event_loop_once(req->transport->event.ctx); + if (event_loop_once(req->transport->event.ctx) != 0) { + return False; + } } return req->state == SMBCLI_REQUEST_DONE; |