util.pposix: Return error from ftruncate if that fails too (but what would we do here?)

This commit is contained in:
Kim Alvefur 2015-05-02 14:41:56 +02:00
parent c98f87b4a7
commit d1a264a39a

View file

@ -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;
} }
} }