Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 2df328d

Browse filesBrowse files
cuiweixieaduh95
authored andcommitted
src: fix flags argument offset in JSUdpWrap
Signed-off-by: Weixie Cui <cuiweixie@gmail.com> PR-URL: #61948 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent dbb3551 commit 2df328d
Copy full SHA for 2df328d

1 file changed

+1-1Lines changed: 1 addition & 1 deletion

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options
Expand file treeCollapse file tree
Open diff view settings
Collapse file

‎src/js_udp_wrap.cc‎

Copy file name to clipboardExpand all lines: src/js_udp_wrap.cc
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ void JSUDPWrap::EmitReceived(const FunctionCallbackInfo<Value>& args) {
157157
int family = args[1].As<Int32>()->Value() == 4 ? AF_INET : AF_INET6;
158158
Utf8Value address(env->isolate(), args[2]);
159159
int port = args[3].As<Int32>()->Value();
160-
int flags = args[3].As<Int32>()->Value();
160+
int flags = args[4].As<Int32>()->Value();
161161

162162
sockaddr_storage addr;
163163
CHECK_EQ(sockaddr_for_family(family, *address, port, &addr), 0);

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.