diff options
Diffstat (limited to 'lvm.c')
-rw-r--r-- | lvm.c | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.c,v 2.250 2015/08/03 20:40:26 roberto Exp roberto $ | 2 | ** $Id: lvm.c,v 2.251 2015/09/08 15:41:05 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 | */ |
@@ -216,11 +216,8 @@ void luaV_finishset (lua_State *L, const TValue *t, TValue *key, | |||
216 | return; | 216 | return; |
217 | } | 217 | } |
218 | t = tm; /* else repeat assignment over 'tm' */ | 218 | t = tm; /* else repeat assignment over 'tm' */ |
219 | if (luaV_fastset(L, t, key, oldval, luaH_get, val)) { | 219 | if (luaV_fastset(L, t, key, oldval, luaH_get, val)) |
220 | invalidateTMcache(hvalue(t)); | 220 | return; /* done */ |
221 | setobj2t(L, cast(TValue *, oldval), val); | ||
222 | return; | ||
223 | } | ||
224 | /* else loop */ | 221 | /* else loop */ |
225 | } | 222 | } |
226 | luaG_runerror(L, "settable chain too long; possible loop"); | 223 | luaG_runerror(L, "settable chain too long; possible loop"); |