From 6a2cb124e3f4f64803d12d9bebed24db186b4d9e Mon Sep 17 00:00:00 2001 From: cjihrig Date: Fri, 3 Nov 2017 11:50:26 -0400 Subject: [PATCH] src: clean up uv_fs_t's in module_wrap.cc This commit adds uv_fs_req_cleanup() calls to all uses of uv_fs_t's in src/module_wrap.cc. PR-URL: https://github.com/nodejs/node/pull/16722 Reviewed-By: Anna Henningsen Reviewed-By: James M Snell --- src/module_wrap.cc | 40 +++++++++++++++++++++++++++------------- 1 file changed, 27 insertions(+), 13 deletions(-) diff --git a/src/module_wrap.cc b/src/module_wrap.cc index 3ba90e4e02d99b..dfba4d5b300f66 100644 --- a/src/module_wrap.cc +++ b/src/module_wrap.cc @@ -310,17 +310,21 @@ std::string ReadFile(uv_file file) { uv_fs_t req; char buffer_memory[4096]; uv_buf_t buf = uv_buf_init(buffer_memory, sizeof(buffer_memory)); + int r; + do { - uv_fs_read(uv_default_loop(), - &req, - file, - &buf, - 1, - contents.length(), // offset - nullptr); - if (req.result <= 0) + r = uv_fs_read(uv_default_loop(), + &req, + file, + &buf, + 1, + contents.length(), // offset + nullptr); + uv_fs_req_cleanup(&req); + + if (r <= 0) break; - contents.append(buf.base, req.result); + contents.append(buf.base, r); } while (true); return contents; } @@ -337,20 +341,29 @@ Maybe CheckFile(const URL& search, if (path.empty()) { return Nothing(); } - uv_fs_open(nullptr, &fs_req, path.c_str(), O_RDONLY, 0, nullptr); - uv_file fd = fs_req.result; + + uv_file fd = uv_fs_open(nullptr, &fs_req, path.c_str(), O_RDONLY, 0, nullptr); + uv_fs_req_cleanup(&fs_req); + if (fd < 0) { return Nothing(); } uv_fs_fstat(nullptr, &fs_req, fd, nullptr); - if (fs_req.statbuf.st_mode & S_IFDIR) { + uint64_t is_directory = fs_req.statbuf.st_mode & S_IFDIR; + uv_fs_req_cleanup(&fs_req); + + if (is_directory) { uv_fs_close(nullptr, &fs_req, fd, nullptr); + uv_fs_req_cleanup(&fs_req); return Nothing(); } - if (opt == CLOSE_AFTER_CHECK) + if (opt == CLOSE_AFTER_CHECK) { uv_fs_close(nullptr, &fs_req, fd, nullptr); + uv_fs_req_cleanup(&fs_req); + } + return Just(fd); } @@ -395,6 +408,7 @@ Maybe ResolveMain(Environment* env, const URL& search) { std::string pkg_src = ReadFile(check.FromJust()); uv_fs_t fs_req; uv_fs_close(nullptr, &fs_req, check.FromJust(), nullptr); + uv_fs_req_cleanup(&fs_req); // It's not okay for the called of this method to not be able to tell // whether an exception is pending or not.