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.
It is always initialized in the skipBOM function called through the skipcomment function.

Regards,
Xmilia