py: Fix bug in DELETE_SUBSCR bytecode, decreasing sp too much.

This commit is contained in:
Damien George 2014-04-05 13:47:41 +01:00
parent b6ec51bbf0
commit 09a4d8305d
1 changed files with 1 additions and 1 deletions

View File

@ -326,7 +326,7 @@ dispatch_loop:
case MP_BC_DELETE_SUBSCR:
mp_delete_subscr(sp[-1], sp[0]);
sp -= 3;
sp -= 2;
break;
case MP_BC_DUP_TOP: