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
d89e7cd4
Commit
d89e7cd4
authored
Jul 16, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Jul 18, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Fix demangling of RTTI type descriptor.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
parent
013ba6aa
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
3 deletions
+1
-3
cpp.c
dlls/msvcrt/tests/cpp.c
+1
-0
undname.c
dlls/msvcrt/undname.c
+0
-3
No files found.
dlls/msvcrt/tests/cpp.c
View file @
d89e7cd4
...
...
@@ -1291,6 +1291,7 @@ static void test_demangle(void)
"??$run@XVTask_Render_Preview@@@QtConcurrent@@YA?AV?$QFuture@X@@PEAVTask_Render_Preview@@P82@EAAXXZ@Z"
},
/* 130 */
{
"??_E?$TStrArray@$$BY0BAA@D$0BA@@@UAEPAXI@Z"
,
"public: virtual void * __thiscall TStrArray<char [256],16>::`vector deleting destructor'(unsigned int)"
},
/* 131 */
{
"??_R0?AVCC@DD@@@8"
,
"class DD::CC `RTTI Type Descriptor'"
},
};
int
i
,
num_test
=
ARRAY_SIZE
(
test
);
char
*
name
;
...
...
dlls/msvcrt/undname.c
View file @
d89e7cd4
...
...
@@ -1452,11 +1452,8 @@ static BOOL symbol_demangle(struct parsed_symbol* sym)
case
'0'
:
{
struct
datatype_t
ct
;
struct
array
pmt
;
sym
->
current
++
;
str_array_init
(
&
pmt
);
demangle_datatype
(
sym
,
&
ct
,
&
pmt
,
FALSE
);
if
(
!
demangle_datatype
(
sym
,
&
ct
,
NULL
,
FALSE
))
goto
done
;
function_name
=
str_printf
(
sym
,
"%s%s `RTTI Type Descriptor'"
,
...
...
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