Skip to content

Commit 722ffe4

Browse files
committed
src: use S_ISDIR to check if the file is dir
1 parent 4e9ce7c commit 722ffe4

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

src/node_file.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -1049,7 +1049,7 @@ static void InternalModuleStat(const FunctionCallbackInfo<Value>& args) {
10491049
int rc = uv_fs_stat(env->event_loop(), &req, *path, nullptr);
10501050
if (rc == 0) {
10511051
const uv_stat_t* const s = static_cast<const uv_stat_t*>(req.ptr);
1052-
rc = !!(s->st_mode & S_IFDIR);
1052+
rc = S_ISDIR(s->st_mode);
10531053
}
10541054
uv_fs_req_cleanup(&req);
10551055

@@ -2854,7 +2854,7 @@ BindingData::FilePathIsFileReturnType BindingData::FilePathIsFile(
28542854

28552855
if (rc == 0) {
28562856
const uv_stat_t* const s = static_cast<const uv_stat_t*>(req.ptr);
2857-
rc = !!(s->st_mode & S_IFDIR);
2857+
rc = S_ISDIR(s->st_mode);
28582858
}
28592859

28602860
uv_fs_req_cleanup(&req);

src/permission/fs_permission.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ std::string WildcardIfDir(const std::string& res) noexcept {
2020
int rc = uv_fs_stat(nullptr, &req, res.c_str(), nullptr);
2121
if (rc == 0) {
2222
const uv_stat_t* const s = static_cast<const uv_stat_t*>(req.ptr);
23-
if (s->st_mode & S_IFDIR) {
23+
if ((s->st_mode & S_IFMT) == S_IFDIR) {
2424
// add wildcard when directory
2525
if (res.back() == node::kPathSeparator) {
2626
return res + "*";
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
'use strict';
2+
const common = require('../common');
3+
const fs = require('fs');
4+
const net = require('net');
5+
6+
const tmpdir = require('../common/tmpdir');
7+
tmpdir.refresh();
8+
9+
const server = net.createServer().listen(common.PIPE, common.mustCall(() => {
10+
// See https://github.com/nodejs/node/issues/52159
11+
fs.readdirSync(tmpdir.path, { recursive: true });
12+
server.close();
13+
}));

0 commit comments

Comments
 (0)