aboutsummaryrefslogtreecommitdiffstats
path: root/util-src
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-11-28 16:12:40 +0100
committerKim Alvefur <zash@zash.se>2013-11-28 16:12:40 +0100
commit93211c58848d1ca62413b66b791bb5fa0a2fe03c (patch)
tree970f113ae768ce4ffe0240945cf6ca6a6b1778ae /util-src
parent8671dcbeb8550fa5aa42dad9987c00841397de91 (diff)
downloadprosody-93211c58848d1ca62413b66b791bb5fa0a2fe03c.tar.gz
prosody-93211c58848d1ca62413b66b791bb5fa0a2fe03c.zip
util.pposix: Verify that file handle is open
Diffstat (limited to 'util-src')
-rw-r--r--util-src/pposix.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/util-src/pposix.c b/util-src/pposix.c
index 7f64038b..4fb1fb56 100644
--- a/util-src/pposix.c
+++ b/util-src/pposix.c
@@ -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);