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
2c2da87c
Commit
2c2da87c
authored
May 01, 2011
by
Eric Pouech
Committed by
Alexandre Julliard
May 02, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Don't try to load fieldlist for a forward declaration.
parent
0957cd03
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
msc.c
dlls/dbghelp/msc.c
+9
-6
No files found.
dlls/dbghelp/msc.c
View file @
2c2da87c
...
...
@@ -1156,8 +1156,9 @@ static struct symt* codeview_parse_one_type(struct codeview_type_parse* ctp,
if
(
details
)
{
codeview_add_type
(
curr_type
,
symt
);
codeview_add_type_struct_field_list
(
ctp
,
(
struct
symt_udt
*
)
symt
,
type
->
struct_v1
.
fieldlist
);
if
(
!
(
type
->
struct_v1
.
property
&
0x80
))
/* 0x80 = forward declaration */
codeview_add_type_struct_field_list
(
ctp
,
(
struct
symt_udt
*
)
symt
,
type
->
struct_v1
.
fieldlist
);
}
break
;
...
...
@@ -1171,8 +1172,9 @@ static struct symt* codeview_parse_one_type(struct codeview_type_parse* ctp,
if
(
details
)
{
codeview_add_type
(
curr_type
,
symt
);
codeview_add_type_struct_field_list
(
ctp
,
(
struct
symt_udt
*
)
symt
,
type
->
struct_v2
.
fieldlist
);
if
(
!
(
type
->
struct_v2
.
property
&
0x80
))
/* 0x80 = forward declaration */
codeview_add_type_struct_field_list
(
ctp
,
(
struct
symt_udt
*
)
symt
,
type
->
struct_v2
.
fieldlist
);
}
break
;
...
...
@@ -1186,8 +1188,9 @@ static struct symt* codeview_parse_one_type(struct codeview_type_parse* ctp,
if
(
details
)
{
codeview_add_type
(
curr_type
,
symt
);
codeview_add_type_struct_field_list
(
ctp
,
(
struct
symt_udt
*
)
symt
,
type
->
struct_v3
.
fieldlist
);
if
(
!
(
type
->
struct_v3
.
property
&
0x80
))
/* 0x80 = forward declaration */
codeview_add_type_struct_field_list
(
ctp
,
(
struct
symt_udt
*
)
symt
,
type
->
struct_v3
.
fieldlist
);
}
break
;
...
...
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