mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.pposix: Return error from ftruncate if that fails too (but what would we do here?)
This commit is contained in:
parent
c98f87b4a7
commit
d1a264a39a
1 changed files with 4 additions and 1 deletions
|
@ -750,7 +750,10 @@ int lc_fallocate(lua_State* L) {
|
||||||
lua_pushstring(L, strerror(ret));
|
lua_pushstring(L, strerror(ret));
|
||||||
/* posix_fallocate() can leave a bunch of NULs at the end, so we cut that
|
/* posix_fallocate() can leave a bunch of NULs at the end, so we cut that
|
||||||
* this assumes that offset == length of the file */
|
* this assumes that offset == length of the file */
|
||||||
ftruncate(fileno(f), offset);
|
if(ftruncate(fileno(f), offset) != 0) {
|
||||||
|
lua_pushstring(L, strerror(errno));
|
||||||
|
return 3;
|
||||||
|
}
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue