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
3bc76576
Commit
3bc76576
authored
Apr 30, 2008
by
Eric Pouech
Committed by
Alexandre Julliard
May 01, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Revert commit
ae1791b0
and correctly…
dbghelp: Revert commit
ae1791b0
and correctly fix what this patch was trying to do.
parent
5ccf6a33
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
stabs.c
dlls/dbghelp/stabs.c
+2
-3
No files found.
dlls/dbghelp/stabs.c
View file @
3bc76576
...
...
@@ -792,10 +792,9 @@ static inline int stabs_pts_read_array(struct ParseTypedefData* ptd,
static
int
stabs_pts_read_type_def
(
struct
ParseTypedefData
*
ptd
,
const
char
*
typename
,
struct
symt
**
ret_dt
)
{
static
struct
symt
null_dt
=
{
SymTagNull
};
int
idx
;
long
sz
=
-
1
;
struct
symt
*
new_dt
=
&
null_dt
;
/* newly created data type */
struct
symt
*
new_dt
=
NULL
;
/* newly created data type */
struct
symt
*
ref_dt
;
/* referenced data type (pointer...) */
long
filenr1
,
subnr1
,
tmp
;
...
...
@@ -808,7 +807,7 @@ static int stabs_pts_read_type_def(struct ParseTypedefData* ptd, const char* typ
while
(
*
ptd
->
ptr
==
'='
)
{
ptd
->
ptr
++
;
PTS_ABORTIF
(
ptd
,
new_dt
->
tag
!=
SymTagNull
);
PTS_ABORTIF
(
ptd
,
new_dt
!=
NULL
);
/* first handle attribute if any */
switch
(
*
ptd
->
ptr
)
...
...
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