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
d13436e0
Commit
d13436e0
authored
Oct 07, 2013
by
Piotr Caban
Committed by
Alexandre Julliard
Oct 07, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Don't try to demangle template after function or variable name.
parent
a873fdc6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
19 deletions
+0
-19
undname.c
dlls/msvcrt/undname.c
+0
-19
No files found.
dlls/msvcrt/undname.c
View file @
d13436e0
...
...
@@ -1219,23 +1219,6 @@ done:
return
ret
;
}
/******************************************************************
* handle_template
* Does the final parsing and handling for a name with templates
*/
static
BOOL
handle_template
(
struct
parsed_symbol
*
sym
)
{
const
char
*
name
;
const
char
*
args
;
assert
(
*
sym
->
current
==
'$'
);
sym
->
current
++
;
if
(
!
(
name
=
get_literal_string
(
sym
)))
return
FALSE
;
if
(
!
(
args
=
get_args
(
sym
,
NULL
,
FALSE
,
'<'
,
'>'
)))
return
FALSE
;
sym
->
result
=
str_printf
(
sym
,
"%s%s"
,
name
,
args
);
return
TRUE
;
}
/*******************************************************************
* symbol_demangle
* Demangle a C++ linker symbol
...
...
@@ -1469,8 +1452,6 @@ static BOOL symbol_demangle(struct parsed_symbol* sym)
/* Function/Data type and access level */
if
(
*
sym
->
current
>=
'0'
&&
*
sym
->
current
<=
'9'
)
ret
=
handle_data
(
sym
);
else
if
(
sym
->
current
[
0
]
==
'$'
&&
(
sym
->
current
[
1
]
<
'0'
||
sym
->
current
[
1
]
>
'9'
))
ret
=
handle_template
(
sym
);
else
if
((
*
sym
->
current
>=
'A'
&&
*
sym
->
current
<=
'Z'
)
||
*
sym
->
current
==
'$'
)
ret
=
handle_method
(
sym
,
do_after
==
3
);
else
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