Merge 0.9->0.10

This commit is contained in:
Kim Alvefur 2013-11-28 16:17:21 +01:00
commit b8ab703419

View file

@ -676,6 +676,8 @@ int lc_fallocate(lua_State* L)
{
off_t offset, len;
FILE *f = *(FILE**) luaL_checkudata(L, 1, LUA_FILEHANDLE);
if (f == NULL)
luaL_error(L, "attempt to use a closed file");
offset = luaL_checkinteger(L, 2);
len = luaL_checkinteger(L, 3);