0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00

src: refactor deprecated UVException usage in pipe-wrap.cc

PR-URL: https://github.com/nodejs/node/pull/27562
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Anto Aravinth <anto.aravinth.cse@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
gengjiawen 2019-05-05 00:06:57 +08:00 committed by ZYSzys
parent 6f2bd9dcc3
commit 07e0395a81

View File

@ -41,6 +41,7 @@ using v8::FunctionCallbackInfo;
using v8::FunctionTemplate;
using v8::HandleScope;
using v8::Int32;
using v8::Isolate;
using v8::Local;
using v8::MaybeLocal;
using v8::Object;
@ -216,8 +217,9 @@ void PipeWrap::Open(const FunctionCallbackInfo<Value>& args) {
int err = uv_pipe_open(&wrap->handle_, fd);
wrap->set_fd(fd);
Isolate* isolate = env->isolate();
if (err != 0)
env->isolate()->ThrowException(UVException(err, "uv_pipe_open"));
isolate->ThrowException(UVException(isolate, err, "uv_pipe_open"));
}