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
51947acd
Commit
51947acd
authored
Mar 06, 2013
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winedbg: Use socklen_t where appropriate.
parent
cfed5aa1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
gdbproxy.c
programs/winedbg/gdbproxy.c
+2
-1
No files found.
programs/winedbg/gdbproxy.c
View file @
51947acd
...
...
@@ -476,6 +476,7 @@ static inline DWORD64 cpu_register(CONTEXT* ctx, unsigned idx)
default:
fprintf
(
stderr
,
"got unexpected size: %u
\n
"
,
(
unsigned
)
cpu_register_map
[
idx
].
ctx_length
);
assert
(
0
);
return
0
;
}
}
...
...
@@ -2363,7 +2364,7 @@ static BOOL gdb_startup(struct gdb_context* gdbctx, DEBUG_EVENT* de, unsigned fl
{
int
sock
;
struct
sockaddr_in
s_addrs
;
unsigned
int
s_len
=
sizeof
(
s_addrs
);
socklen_t
s_len
=
sizeof
(
s_addrs
);
struct
pollfd
pollfd
;
IMAGEHLP_MODULE64
imh_mod
;
BOOL
ret
=
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