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
a41b45a8
Commit
a41b45a8
authored
Jan 31, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Jan 31, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbgeng: Use correct integral type.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
f44f3c23
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
dbgeng.c
dlls/dbgeng/dbgeng.c
+3
-2
No files found.
dlls/dbgeng/dbgeng.c
View file @
a41b45a8
...
...
@@ -81,7 +81,7 @@ static struct target_process *debug_client_get_target(struct debug_client *debug
}
static
HRESULT
debug_target_return_string
(
const
char
*
str
,
char
*
buffer
,
unsigned
int
buffer_size
,
unsigned
int
*
size
)
ULONG
*
size
)
{
unsigned
int
len
=
strlen
(
str
),
dst_len
;
...
...
@@ -1877,7 +1877,8 @@ static HRESULT STDMETHODCALLTYPE debugsymbols_GetModuleVersionInformation(IDebug
struct
target_process
*
target
;
void
*
version_info
,
*
ptr
;
HRESULT
hr
=
E_FAIL
;
DWORD
handle
,
size
;
DWORD
handle
;
UINT
size
;
TRACE
(
"%p, %u, %s, %s, %p, %u, %p.
\n
"
,
iface
,
index
,
wine_dbgstr_longlong
(
base
),
debugstr_a
(
item
),
buffer
,
buffer_size
,
info_size
);
...
...
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