diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-11-17 14:00:28 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2015-11-17 14:00:28 -0200 |
commit | 2e8f8a18e4ddbb3bebd8e81e276fc37bce02e422 (patch) | |
tree | 13b5f7da3ef51e642bde1a6a7da386e534aaac87 | |
parent | f5b0459aba1cf90db8db5136d6719ef4d646a584 (diff) | |
download | lua-2e8f8a18e4ddbb3bebd8e81e276fc37bce02e422.tar.gz lua-2e8f8a18e4ddbb3bebd8e81e276fc37bce02e422.tar.bz2 lua-2e8f8a18e4ddbb3bebd8e81e276fc37bce02e422.zip |
detail
-rw-r--r-- | lvm.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.c,v 2.261 2015/11/12 18:08:58 roberto Exp roberto $ | 2 | ** $Id: lvm.c,v 2.262 2015/11/13 13:24:26 roberto Exp roberto $ |
3 | ** Lua virtual machine | 3 | ** Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -723,7 +723,7 @@ void luaV_finishOp (lua_State *L) { | |||
723 | /* execute a jump instruction */ | 723 | /* execute a jump instruction */ |
724 | #define dojump(ci,i,e) \ | 724 | #define dojump(ci,i,e) \ |
725 | { int a = GETARG_A(i); \ | 725 | { int a = GETARG_A(i); \ |
726 | if (a > 0) luaF_close(L, ci->u.l.base + a - 1); \ | 726 | if (a != 0) luaF_close(L, ci->u.l.base + a - 1); \ |
727 | ci->u.l.savedpc += GETARG_sBx(i) + e; } | 727 | ci->u.l.savedpc += GETARG_sBx(i) + e; } |
728 | 728 | ||
729 | /* for test instructions, execute the jump instruction that follows it */ | 729 | /* for test instructions, execute the jump instruction that follows it */ |