summaryrefslogtreecommitdiff
path: root/py/objtuple.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/objtuple.c')
-rw-r--r--py/objtuple.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/py/objtuple.c b/py/objtuple.c
index da714e08a..3e5041c9d 100644
--- a/py/objtuple.c
+++ b/py/objtuple.c
@@ -91,7 +91,9 @@ static mp_obj_t tuple_binary_op(int op, mp_obj_t lhs, mp_obj_t rhs) {
#if MICROPY_ENABLE_SLICE
if (MP_OBJ_IS_TYPE(rhs, &slice_type)) {
machine_uint_t start, stop;
- assert(m_seq_get_fast_slice_indexes(o->len, rhs, &start, &stop));
+ if (!m_seq_get_fast_slice_indexes(o->len, rhs, &start, &stop)) {
+ assert(0);
+ }
mp_obj_tuple_t *res = mp_obj_new_tuple(stop - start, NULL);
m_seq_copy(res->items, o->items + start, res->len, mp_obj_t);
return res;