Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
7b2e7c80
Commit
7b2e7c80
authored
Jun 28, 2023
by
Ally Sommers
Committed by
Alexandre Julliard
Jul 03, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll/unix: Skip address conversion for SOCK_STREAM sockets in try_send().
parent
cd771fa7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
socket.c
dlls/ntdll/unix/socket.c
+5
-1
No files found.
dlls/ntdll/unix/socket.c
View file @
7b2e7c80
...
...
@@ -985,10 +985,14 @@ static NTSTATUS try_send( int fd, struct async_send_ioctl *async )
union
unix_sockaddr
unix_addr
;
struct
msghdr
hdr
;
int
attempt
=
0
;
int
sock_type
;
socklen_t
len
=
sizeof
(
sock_type
);
ssize_t
ret
;
getsockopt
(
fd
,
SOL_SOCKET
,
SO_TYPE
,
&
sock_type
,
&
len
);
memset
(
&
hdr
,
0
,
sizeof
(
hdr
)
);
if
(
async
->
addr
)
if
(
async
->
addr
&&
sock_type
!=
SOCK_STREAM
)
{
hdr
.
msg_name
=
&
unix_addr
;
hdr
.
msg_namelen
=
sockaddr_to_unix
(
async
->
addr
,
async
->
addr_len
,
&
unix_addr
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment