[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Possible bug in getfunc() in lbaselib.c (5.1.1)?
- From: Eric Raible <raible+lua@...>
- Date: Fri, 9 Feb 2007 04:06:41 +0000 (UTC)
Seems to me that a simpler (and more correct) patch would be to
change lbaselib.c:121
from:
int level = luaL_optint(L, 1, 1);
to:
int level = luaL_checkint(L, 1);
- Eric