From 49f7aab62af7e5d5b46c551c1620a8a89f448f7e Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 18 May 2017 09:34:58 -0300 Subject: 'lua_rawlen' returns 'lua_Unsigned' instead of 'size_t'. (Real length of strings and userdata are limited by Lua integers, but table length is hard to compute limiting it to 'size_t'.) --- lapi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lapi.c') diff --git a/lapi.c b/lapi.c index facf9541..e7d59b45 100644 --- a/lapi.c +++ b/lapi.c @@ -1,5 +1,5 @@ /* -** $Id: lapi.c,v 2.265 2017/04/24 16:59:26 roberto Exp roberto $ +** $Id: lapi.c,v 2.266 2017/05/11 18:57:46 roberto Exp roberto $ ** Lua API ** See Copyright Notice in lua.h */ @@ -389,7 +389,7 @@ LUA_API const char *lua_tolstring (lua_State *L, int idx, size_t *len) { } -LUA_API size_t lua_rawlen (lua_State *L, int idx) { +LUA_API lua_Unsigned lua_rawlen (lua_State *L, int idx) { StkId o = index2addr(L, idx); switch (ttype(o)) { case LUA_TSHRSTR: return tsvalue(o)->shrlen; -- cgit v1.2.3-55-g6feb