mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.pposix: Verify that file handle is open
This commit is contained in:
parent
7e594b0b3c
commit
6d5db18948
1 changed files with 2 additions and 0 deletions
|
@ -666,6 +666,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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue