mirror of
https://github.com/lua/lua
synced 2025-04-05 20:42:54 +03:00
detail (i + 1 > exp is simply i >= exp)
This commit is contained in:
parent
dcad08b76d
commit
a5cbb7c3a7
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
** $Id: lstring.c,v 2.48 2015/03/25 13:42:19 roberto Exp roberto $
|
** $Id: lstring.c,v 2.49 2015/06/01 16:34:37 roberto Exp roberto $
|
||||||
** String table (keeps all strings handled by Lua)
|
** String table (keeps all strings handled by Lua)
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
@ -183,7 +183,7 @@ TString *luaS_newlstr (lua_State *L, const char *str, size_t l) {
|
|||||||
return internshrstr(L, str, l);
|
return internshrstr(L, str, l);
|
||||||
else {
|
else {
|
||||||
TString *ts;
|
TString *ts;
|
||||||
if (l + 1 > (MAX_SIZE - sizeof(TString))/sizeof(char))
|
if (l >= (MAX_SIZE - sizeof(TString))/sizeof(char))
|
||||||
luaM_toobig(L);
|
luaM_toobig(L);
|
||||||
ts = createstrobj(L, str, l, LUA_TLNGSTR, G(L)->seed);
|
ts = createstrobj(L, str, l, LUA_TLNGSTR, G(L)->seed);
|
||||||
ts->u.lnglen = l;
|
ts->u.lnglen = l;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user