streams: Treat non-error output size as unsigned.

pull/768/merge
Paul Sokolovsky 2014-07-23 00:25:46 +03:00
rodzic e1b1abc1e8
commit 4ecb700fe3
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -113,7 +113,7 @@ STATIC mp_obj_t stream_read(uint n_args, const mp_obj_t *args) {
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_OSError, "[Errno %d]", error));
}
if (out_sz < more_bytes) {
if ((mp_uint_t)out_sz < more_bytes) {
// Finish reading.
// TODO what if we have read only half a non-ASCII char?
vstr_cut_tail_bytes(&vstr, more_bytes - out_sz);