1
0
mirror of https://github.com/lua/lua.git synced 2025-01-14 05:43:00 +08:00

no need to avoid negative ints in 'LoadInt'

This commit is contained in:
Roberto Ierusalimschy 2014-03-10 16:50:19 -03:00
parent 197e249433
commit 901da539e5

View File

@ -1,5 +1,5 @@
/*
** $Id: lundump.c,v 2.30 2014/03/01 15:18:44 roberto Exp roberto $
** $Id: lundump.c,v 2.31 2014/03/10 17:56:32 roberto Exp roberto $
** load precompiled Lua chunks
** See Copyright Notice in lua.h
*/
@ -59,8 +59,6 @@ static lu_byte LoadByte (LoadState *S) {
static int LoadInt (LoadState *S) {
int x;
LoadVar(S, x);
if (x < 0)
error(S, "corrupted");
return x;
}