diff --git a/src/udp_wrap.cc b/src/udp_wrap.cc index 5d6614f8b30d9f..28970839afa0c3 100644 --- a/src/udp_wrap.cc +++ b/src/udp_wrap.cc @@ -137,7 +137,6 @@ void UDPWrap::New(const FunctionCallbackInfo& args) { void UDPWrap::GetFD(Local, const PropertyCallbackInfo& args) { int fd = UV_EBADF; #if !defined(_WIN32) - HandleScope scope(args.GetIsolate()); UDPWrap* wrap = Unwrap(args.Holder()); if (wrap != nullptr) uv_fileno(reinterpret_cast(&wrap->handle_), &fd);