Skip to content

Commit

Permalink
fs: make mutating options in Callback readdir() not affect results
Browse files Browse the repository at this point in the history
  • Loading branch information
LiviaMedeiros committed Dec 7, 2024
1 parent 779031f commit ff33adc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/fs.js
Original file line number Diff line number Diff line change
Expand Up @@ -1531,6 +1531,9 @@ function readdir(path, options, callback) {
}

if (options.recursive) {
// Make shallow copy to prevent mutating options from affecting results
options = copyObject(options);

readdirRecursive(path, options, callback);
return;
}
Expand Down
8 changes: 8 additions & 0 deletions test/parallel/test-fs-readdir-types.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,14 @@ fs.readdir(readdirDir, {
assertDirents(await direntsPromise);
})().then(common.mustCall());

{
const options = { withFileTypes: true };
fs.readdir(readdirDir, options, common.mustSucceed((dirents) => {
assertDirents(dirents);
}));
options.withFileTypes = false;
}

// Check for correct types when the binding returns unknowns
const UNKNOWN = constants.UV_DIRENT_UNKNOWN;
const oldReaddir = binding.readdir;
Expand Down

0 comments on commit ff33adc

Please sign in to comment.