-
-
Notifications
You must be signed in to change notification settings - Fork 33.9k
Closed
Labels
benchmarkIssues and PRs related to the benchmark subsystem.Issues and PRs related to the benchmark subsystem.fsIssues and PRs related to the fs subsystem / file system.Issues and PRs related to the fs subsystem / file system.
Description
- Version: master
- Platform: n/a
- Subsystem: benchmark
In benchmark/fs/bench-statSync.js, the
if (statSyncType === 'fstat')
fs.closeSync(arg);should instead be
if (statSyncType === 'fstatSync')
fs.closeSync(arg);Although, I'm not sure we even need that bit of code since the OS will automatically clean up any open resources on process exit.
Metadata
Metadata
Assignees
Labels
benchmarkIssues and PRs related to the benchmark subsystem.Issues and PRs related to the benchmark subsystem.fsIssues and PRs related to the fs subsystem / file system.Issues and PRs related to the fs subsystem / file system.