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
439a36e3
Commit
439a36e3
authored
Jul 06, 2023
by
Jacek Caban
Committed by
Alexandre Julliard
Jul 06, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Use V_INT macro to access VARIANT value.
parent
bf210915
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
msc.c
dlls/dbghelp/msc.c
+3
-6
No files found.
dlls/dbghelp/msc.c
View file @
439a36e3
...
...
@@ -2582,8 +2582,7 @@ static BOOL codeview_snarf(const struct msc_debug_info* msc_dbg,
name
=
(
const
struct
p_string
*
)((
const
char
*
)
&
sym
->
constant_v1
.
cvalue
+
vlen
);
se
=
codeview_get_type
(
sym
->
constant_v1
.
type
,
FALSE
);
TRACE
(
"S-Constant-V1 %u %s %x
\n
"
,
v
.
n1
.
n2
.
n3
.
intVal
,
terminate_string
(
name
),
sym
->
constant_v1
.
type
);
TRACE
(
"S-Constant-V1 %u %s %x
\n
"
,
V_INT
(
&
v
),
terminate_string
(
name
),
sym
->
constant_v1
.
type
);
symt_new_constant
(
msc_dbg
->
module
,
compiland
,
terminate_string
(
name
),
se
,
&
v
);
}
...
...
@@ -2599,8 +2598,7 @@ static BOOL codeview_snarf(const struct msc_debug_info* msc_dbg,
name
=
(
const
struct
p_string
*
)((
const
char
*
)
&
sym
->
constant_v2
.
cvalue
+
vlen
);
se
=
codeview_get_type
(
sym
->
constant_v2
.
type
,
FALSE
);
TRACE
(
"S-Constant-V2 %u %s %x
\n
"
,
v
.
n1
.
n2
.
n3
.
intVal
,
terminate_string
(
name
),
sym
->
constant_v2
.
type
);
TRACE
(
"S-Constant-V2 %u %s %x
\n
"
,
V_INT
(
&
v
),
terminate_string
(
name
),
sym
->
constant_v2
.
type
);
symt_new_constant
(
msc_dbg
->
module
,
compiland
,
terminate_string
(
name
),
se
,
&
v
);
}
...
...
@@ -2616,8 +2614,7 @@ static BOOL codeview_snarf(const struct msc_debug_info* msc_dbg,
name
=
(
const
char
*
)
&
sym
->
constant_v3
.
cvalue
+
vlen
;
se
=
codeview_get_type
(
sym
->
constant_v3
.
type
,
FALSE
);
TRACE
(
"S-Constant-V3 %u %s %x
\n
"
,
v
.
n1
.
n2
.
n3
.
intVal
,
name
,
sym
->
constant_v3
.
type
);
TRACE
(
"S-Constant-V3 %u %s %x
\n
"
,
V_INT
(
&
v
),
name
,
sym
->
constant_v3
.
type
);
/* FIXME: we should add this as a constant value */
symt_new_constant
(
msc_dbg
->
module
,
compiland
,
name
,
se
,
&
v
);
}
...
...
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