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
cf3815dc
Commit
cf3815dc
authored
May 19, 2023
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jun 01, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Remove superfluous casts to self.
parent
19cc1dbe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
dwarf.c
dlls/dbghelp/dwarf.c
+1
-1
msc.c
dlls/dbghelp/msc.c
+2
-2
No files found.
dlls/dbghelp/dwarf.c
View file @
cf3815dc
...
...
@@ -2148,7 +2148,7 @@ static void dwarf2_parse_inlined_subroutine(dwarf2_subprogram_t* subpgm,
subpgm
->
current_block
?
&
subpgm
->
current_block
->
symt
:
&
subpgm
->
current_func
->
symt
,
dwarf2_get_cpp_name
(
di
,
name
.
u
.
string
),
&
sig_type
->
symt
,
num_ranges
);
subpgm
->
current_func
=
(
struct
symt_function
*
)
inlined
;
subpgm
->
current_func
=
inlined
;
subpgm
->
current_block
=
NULL
;
if
(
!
dwarf2_fill_ranges
(
di
,
inlined
->
ranges
,
num_ranges
))
...
...
dlls/dbghelp/msc.c
View file @
cf3815dc
...
...
@@ -2683,7 +2683,7 @@ static BOOL codeview_snarf(const struct msc_debug_info* msc_dbg,
(
const
unsigned
char
*
)
sym
+
length
);
if
(
inlined
)
{
curr_func
=
(
struct
symt_function
*
)
inlined
;
curr_func
=
inlined
;
block
=
NULL
;
}
else
...
...
@@ -2704,7 +2704,7 @@ static BOOL codeview_snarf(const struct msc_debug_info* msc_dbg,
(
const
unsigned
char
*
)
sym
+
length
);
if
(
inlined
)
{
curr_func
=
(
struct
symt_function
*
)
inlined
;
curr_func
=
inlined
;
block
=
NULL
;
}
else
...
...
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