Skip to content
Snippets Groups Projects
Commit eaa77455 authored by Damien George's avatar Damien George
Browse files

py/objint: Fix left-shift overflow in checking for large int.

parent b32a38e3
No related branches found
No related tags found
No related merge requests found
......@@ -383,7 +383,7 @@ STATIC mp_obj_t int_from_bytes(size_t n_args, const mp_obj_t *args) {
#if MICROPY_LONGINT_IMPL != MICROPY_LONGINT_IMPL_NONE
// If result guaranteedly fits in small int, use that
if (!MP_SMALL_INT_FITS(1 << (bufinfo.len * 8 - 1))) {
if (bufinfo.len >= sizeof(mp_uint_t) || !MP_SMALL_INT_FITS(1 << (bufinfo.len * 8 - 1))) {
return mp_obj_int_from_bytes_impl(args[2] != MP_OBJ_NEW_QSTR(MP_QSTR_little), bufinfo.len, bufinfo.buf);
} else
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment