Skip to content

Commit 466cda0

Browse files
cjihrigdanbev
authored andcommitted
fs: ensure readdir() callback is only called once
This commit ensures that the readdir() callback can only be called once when the withFileTypes parameter is supplied. PR-URL: #22793 Fixes: #22778 Reviewed-By: Bryan English <[email protected]> Reviewed-By: Anatoli Papirovski <[email protected]> Reviewed-By: Minwoo Jung <[email protected]>
1 parent a93f035 commit 466cda0

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

lib/internal/fs/utils.js

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ const {
1010
ERR_OUT_OF_RANGE
1111
} = require('internal/errors').codes;
1212
const { isUint8Array, isArrayBufferView } = require('internal/util/types');
13+
const { once } = require('internal/util');
1314
const pathModule = require('path');
1415
const util = require('util');
1516
const kType = Symbol('type');
@@ -123,6 +124,7 @@ function getDirents(path, [names, types], callback) {
123124
if (typeof callback == 'function') {
124125
const len = names.length;
125126
let toFinish = 0;
127+
callback = once(callback);
126128
for (i = 0; i < len; i++) {
127129
const type = types[i];
128130
if (type === UV_DIRENT_UNKNOWN) {

lib/internal/streams/pipeline.js

+1-9
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,13 @@
55

66
let eos;
77

8+
const { once } = require('internal/util');
89
const {
910
ERR_INVALID_CALLBACK,
1011
ERR_MISSING_ARGS,
1112
ERR_STREAM_DESTROYED
1213
} = require('internal/errors').codes;
1314

14-
function once(callback) {
15-
let called = false;
16-
return function(err) {
17-
if (called) return;
18-
called = true;
19-
callback(err);
20-
};
21-
}
22-
2315
function isRequest(stream) {
2416
return stream.setHeader && typeof stream.abort === 'function';
2517
}

lib/internal/util.js

+10
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,15 @@ function isInsideNodeModules() {
365365
return false;
366366
}
367367

368+
function once(callback) {
369+
let called = false;
370+
return function(...args) {
371+
if (called) return;
372+
called = true;
373+
callback(...args);
374+
};
375+
}
376+
368377
module.exports = {
369378
assertCrypto,
370379
cachedResult,
@@ -381,6 +390,7 @@ module.exports = {
381390
join,
382391
normalizeEncoding,
383392
objectToString,
393+
once,
384394
promisify,
385395
spliceOne,
386396
removeColors,

0 commit comments

Comments
 (0)