Skip to content

Commit c15f782

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

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-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 + "*";

0 commit comments

Comments
 (0)