Fix bug with socket.recv_into size == 0.
It returned 0 when it should have filled the buffer. Python reference: https://docs.python.org/3/library/socket.html#socket.socket.recv_into
This commit is contained in:
parent
7611e71a1b
commit
8f58669ddd
@ -261,7 +261,7 @@ STATIC mp_obj_t socketpool_socket_recv_into(size_t n_args, const mp_obj_t *args)
|
||||
mp_int_t len = bufinfo.len;
|
||||
if (n_args == 3) {
|
||||
mp_int_t given_len = mp_obj_get_int(args[2]);
|
||||
if (given_len < len) {
|
||||
if (given_len > 0 && given_len < len) {
|
||||
len = given_len;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user