Skip to content

Commit

Permalink
fs: fix mkdirSync so ENOSPC is correctly reported
Browse files Browse the repository at this point in the history
  • Loading branch information
santigimeno committed Apr 21, 2022
1 parent fe85cf7 commit dd94483
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/node_file.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1382,6 +1382,7 @@ int MKDirpSync(uv_loop_t* loop,
}
break;
case UV_EACCES:
case UV_ENOSPC:
case UV_ENOTDIR:
case UV_EPERM: {
return err;
Expand Down

0 comments on commit dd94483

Please sign in to comment.