lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


In function luaL_loadfilex from lauxlib.c:

`LoadF lf;` is defined, and `lf.n` is used below without prior initialization.

I think at least there should be `lf.n = 0;` after the `lf` declaration.