Skip to content
Snippets Groups Projects
Commit 322471e4 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

netaddr_type() now returns NET_NONE when passed null or undefined

... instead of undefined, to match what the documentation already stated.
parent 9eaa0355
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -1400,7 +1400,7 @@ js_netaddr_type(JSContext *cx, uintN argc, jsval *arglist)
jsval *argv=JS_ARGV(cx, arglist);
char* str = NULL;
JS_SET_RVAL(cx, arglist, JSVAL_VOID);
JS_SET_RVAL(cx, arglist, INT_TO_JSVAL(NET_NONE));
if(argc==0 || JSVAL_NULL_OR_VOID(argv[0]))
return(JS_TRUE);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment