diff --git a/src/node_file.cc b/src/node_file.cc index 620207eaec049f..e33620c0a7ac93 100644 --- a/src/node_file.cc +++ b/src/node_file.cc @@ -372,8 +372,8 @@ int FileHandle::ReadStart() { // Use a fresh async resource. // Lifetime is ensured via AsyncWrap::resource_. Local resource = Object::New(env()->isolate()); - resource->Set( - env()->context(), env()->handle_string(), read_wrap->object()); + USE(resource->Set( + env()->context(), env()->handle_string(), read_wrap->object())); read_wrap->AsyncReset(resource); read_wrap->file_handle_ = this; } else {