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
62b5d6b1
Commit
62b5d6b1
authored
Nov 02, 2017
by
Andrey Gusev
Committed by
Alexandre Julliard
Nov 03, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iphlpapi: Change variable type.
Signed-off-by:
Andrey Gusev
<
andrey.goosev@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ace66d35
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ipstats.c
dlls/iphlpapi/ipstats.c
+2
-2
No files found.
dlls/iphlpapi/ipstats.c
View file @
62b5d6b1
...
...
@@ -2051,11 +2051,11 @@ static unsigned int find_owning_pid( struct pid_map *map, unsigned int num_entri
#elif defined(HAVE_PROC_PIDINFO)
struct
proc_fdinfo
*
fds
;
struct
socket_fdinfo
sock
;
unsigned
int
i
,
j
,
n
,
fd_len
;
unsigned
int
i
,
j
,
n
;
for
(
i
=
0
;
i
<
num_entries
;
i
++
)
{
fd_len
=
proc_pidinfo
(
map
[
i
].
unix_pid
,
PROC_PIDLISTFDS
,
0
,
NULL
,
0
);
int
fd_len
=
proc_pidinfo
(
map
[
i
].
unix_pid
,
PROC_PIDLISTFDS
,
0
,
NULL
,
0
);
if
(
fd_len
<=
0
)
continue
;
fds
=
HeapAlloc
(
GetProcessHeap
(),
0
,
fd_len
);
...
...
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