Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
847a2937
Commit
847a2937
authored
Mar 06, 2013
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winhttp: Always pass a ULONG variable to ioctlsocket.
parent
51947acd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
net.c
dlls/winhttp/net.c
+4
-2
No files found.
dlls/winhttp/net.c
View file @
847a2937
...
...
@@ -331,7 +331,8 @@ BOOL netconn_close( netconn_t *conn )
BOOL
netconn_connect
(
netconn_t
*
conn
,
const
struct
sockaddr
*
sockaddr
,
unsigned
int
addr_len
,
int
timeout
)
{
BOOL
ret
=
FALSE
;
int
res
=
0
,
state
;
int
res
=
0
;
ULONG
state
;
if
(
timeout
>
0
)
{
...
...
@@ -734,7 +735,8 @@ BOOL netconn_recv( netconn_t *conn, void *buf, size_t len, int flags, int *recvd
BOOL
netconn_query_data_available
(
netconn_t
*
conn
,
DWORD
*
available
)
{
#ifdef FIONREAD
int
ret
,
unread
;
int
ret
;
ULONG
unread
;
#endif
*
available
=
0
;
if
(
!
netconn_connected
(
conn
))
return
FALSE
;
...
...
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