Browse Source

os: throw when os.networkInterfaces() fails

v0.9.4-release
Bert Belder 12 years ago
parent
commit
03b00dcca9
  1. 5
      src/node_os.cc

5
src/node_os.cc

@ -206,9 +206,8 @@ static Handle<Value> GetInterfaceAddresses(const Arguments& args) {
uv_err_t err = uv_interface_addresses(&interfaces, &count);
if (err.code != UV_OK) {
return Undefined();
}
if (err.code != UV_OK)
return ThrowException(UVException(err.code, "uv_interface_addresses"));
ret = Object::New();

Loading…
Cancel
Save