diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-18 23:42:49 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-18 23:42:49 +0000 |
commit | 932bf1c48f5ccbb82b7693af4ba05fb48508afbf (patch) | |
tree | c6186134c1bbf9cd9c9b3073e121eb58b765df87 /py/vm.c | |
parent | 8fce5b42a282d2878004b6a6b53927c7ebeede3f (diff) |
py: Fix VM/runtime unpack sequence bug, Issue #193.
Diffstat (limited to 'py/vm.c')
-rw-r--r-- | py/vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -450,7 +450,7 @@ bool mp_execute_byte_code_2(const byte *code_info, const byte **ip_in_out, mp_ob case MP_BC_UNPACK_SEQUENCE: DECODE_UINT; - rt_unpack_sequence(sp[0], unum, sp + unum - 1); + rt_unpack_sequence(sp[0], unum, sp); sp += unum - 1; break; |