Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
src: Return on UV_ENOSYS in GetInterfaceAddresses.
  • Loading branch information
Bryce Gibson committed Jan 14, 2016
commit 2de963b3d247273391d5f85e3c82d1fa88bd8a90
2 changes: 1 addition & 1 deletion src/node_os.cc
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ static void GetInterfaceAddresses(const FunctionCallbackInfo<Value>& args) {
ret = Object::New(env->isolate());

if (err == UV_ENOSYS) {
args.GetReturnValue().Set(ret);
return args.GetReturnValue().Set(ret);
} else if (err) {
return env->ThrowUVException(err, "uv_interface_addresses");
}
Expand Down