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
3e87a054
Commit
3e87a054
authored
Aug 24, 2009
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Aug 25, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ws2_32: Use only the lower 16 bit as level when calling [g|s]etsockopt from 16 bit.
parent
1b3027f3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
socket16.c
dlls/ws2_32/socket16.c
+3
-2
No files found.
dlls/ws2_32/socket16.c
View file @
3e87a054
...
...
@@ -294,8 +294,9 @@ INT16 WINAPI getsockopt16(SOCKET16 s, INT16 level, INT16 optname, char *optval,
INT
optlen32
;
INT
*
p
=
&
optlen32
;
INT
retVal
;
if
(
optlen
)
optlen32
=
*
optlen
;
else
p
=
NULL
;
retVal
=
WS_getsockopt
(
s
,
level
,
optname
,
optval
,
p
);
retVal
=
WS_getsockopt
(
s
,
(
WORD
)
level
,
optname
,
optval
,
p
);
if
(
optlen
)
*
optlen
=
optlen32
;
return
retVal
;
}
...
...
@@ -397,7 +398,7 @@ INT16 WINAPI setsockopt16(SOCKET16 s, INT16 level, INT16 optname,
char
*
optval
,
INT16
optlen
)
{
if
(
!
optval
)
return
SOCKET_ERROR
;
return
WS_setsockopt
(
s
,
level
,
optname
,
optval
,
optlen
);
return
WS_setsockopt
(
s
,
(
WORD
)
level
,
optname
,
optval
,
optlen
);
}
/***********************************************************************
...
...
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