'invalidateTMcache' not needed in all 'settable' uses

This commit is contained in:
Roberto Ierusalimschy
2015-08-03 17:40:26 -03:00
parent 3b795541c4
commit 8f25d08637
3 changed files with 7 additions and 6 deletions

3
lapi.c
View File

@@ -1,5 +1,5 @@
/*
** $Id: lapi.c,v 2.251 2015/07/20 18:24:50 roberto Exp roberto $
** $Id: lapi.c,v 2.252 2015/08/03 19:50:49 roberto Exp roberto $
** Lua API
** See Copyright Notice in lua.h
*/
@@ -736,6 +736,7 @@ static void auxsetstr (lua_State *L, const TValue *t, const char *k) {
TString *str = luaS_new(L, k);
api_checknelems(L, 1);
if (luaV_fastset(L, t, str, aux, luaH_getstr, L->top)) {
invalidateTMcache(hvalue(t));
setobj2t(L, cast(TValue *, aux), L->top - 1);
L->top--; /* pop value */
}