Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 04fa6d6

Browse files
joaocgreisjasnell
authored andcommittedJul 9, 2020
fs: close file descriptor of promisified truncate
Original PR: PR-URL: #28858 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> PR-URL: #34239 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
1 parent d547d1c commit 04fa6d6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎lib/internal/fs/promises.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,8 @@ async function rename(oldPath, newPath) {
305305
}
306306

307307
async function truncate(path, len = 0) {
308-
return ftruncate(await open(path, 'r+'), len);
308+
const fd = await open(path, 'r+');
309+
return ftruncate(fd, len).finally(fd.close.bind(fd));
309310
}
310311

311312
async function ftruncate(handle, len = 0) {

0 commit comments

Comments
 (0)
Please sign in to comment.