فهرست منبع

no need to avoid negative ints in 'LoadInt'

Roberto Ierusalimschy 11 سال پیش
والد
کامیت
901da539e5
1فایلهای تغییر یافته به همراه1 افزوده شده و 3 حذف شده
  1. 1 3
      lundump.c

+ 1 - 3
lundump.c

@@ -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
 ** load precompiled Lua chunks
 ** See Copyright Notice in lua.h
 ** See Copyright Notice in lua.h
 */
 */
@@ -59,8 +59,6 @@ static lu_byte LoadByte (LoadState *S) {
 static int LoadInt (LoadState *S) {
 static int LoadInt (LoadState *S) {
   int x;
   int x;
   LoadVar(S, x);
   LoadVar(S, x);
-  if (x < 0)
-    error(S, "corrupted");
   return x;
   return x;
 }
 }