diff options
Diffstat (limited to 'lstrlib.c')
-rw-r--r-- | lstrlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstrlib.c,v 1.259 2017/11/16 13:19:06 roberto Exp roberto $ | 2 | ** $Id: lstrlib.c,v 1.260 2017/11/23 19:29:04 roberto Exp roberto $ |
3 | ** Standard library for string operations and pattern-matching | 3 | ** Standard library for string operations and pattern-matching |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -837,7 +837,7 @@ static int gmatch (lua_State *L) { | |||
837 | const char *p = luaL_checklstring(L, 2, &lp); | 837 | const char *p = luaL_checklstring(L, 2, &lp); |
838 | GMatchState *gm; | 838 | GMatchState *gm; |
839 | lua_settop(L, 2); /* keep them on closure to avoid being collected */ | 839 | lua_settop(L, 2); /* keep them on closure to avoid being collected */ |
840 | gm = (GMatchState *)lua_newuserdata(L, sizeof(GMatchState)); | 840 | gm = (GMatchState *)lua_newuserdatauv(L, sizeof(GMatchState), 0); |
841 | prepstate(&gm->ms, L, s, ls, p, lp); | 841 | prepstate(&gm->ms, L, s, ls, p, lp); |
842 | gm->src = s; gm->p = p; gm->lastmatch = NULL; | 842 | gm->src = s; gm->p = p; gm->lastmatch = NULL; |
843 | lua_pushcclosure(L, gmatch_aux, 3); | 843 | lua_pushcclosure(L, gmatch_aux, 3); |