extmod/modwebsocket: Another case to propagate EOF.

This commit is contained in:
Paul Sokolovsky 2016-04-13 22:14:46 +03:00
parent 733db525e2
commit 59a4fee516
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ STATIC mp_uint_t websocket_read(mp_obj_t self_in, void *buf, mp_uint_t size, int
case PAYLOAD: {
size_t sz = MIN(size, self->msg_sz);
mp_uint_t out_sz = stream_p->read(self->sock, buf, sz, errcode);
if (out_sz == MP_STREAM_ERROR) {
if (out_sz == 0 || out_sz == MP_STREAM_ERROR) {
return out_sz;
}