Skip to content

Commit c0cdb83

Browse files
Nitzan Uzielytargos
Nitzan Uziely
authored andcommitted
fs: fix writeFile signal does not close file
Fix an issue where the writeFile does not close the file when the signal is aborted. PR-URL: #37402 Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
1 parent e8b1e2c commit c0cdb83

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

lib/fs.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,11 @@ function readFile(path, options, callback) {
342342
return;
343343
}
344344

345+
if (options.signal?.aborted) {
346+
callback(lazyDOMException('The operation was aborted', 'AbortError'));
347+
return;
348+
}
349+
345350
const flagsNumber = stringToFlags(options.flag);
346351
path = getValidatedPath(path);
347352

@@ -1453,7 +1458,13 @@ function lutimesSync(path, atime, mtime) {
14531458

14541459
function writeAll(fd, isUserFd, buffer, offset, length, signal, callback) {
14551460
if (signal?.aborted) {
1456-
callback(lazyDOMException('The operation was aborted', 'AbortError'));
1461+
if (isUserFd) {
1462+
callback(lazyDOMException('The operation was aborted', 'AbortError'));
1463+
} else {
1464+
fs.close(fd, function() {
1465+
callback(lazyDOMException('The operation was aborted', 'AbortError'));
1466+
});
1467+
}
14571468
return;
14581469
}
14591470
// write(fd, buffer, offset, length, position, callback)

0 commit comments

Comments
 (0)