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
d9db2558
Commit
d9db2558
authored
Sep 29, 2002
by
Greg Turner
Committed by
Alexandre Julliard
Sep 29, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Attempt at handling 'k' and 'B' symbols.
parent
7e1e62de
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
stabs.c
programs/winedbg/stabs.c
+6
-1
No files found.
programs/winedbg/stabs.c
View file @
d9db2558
...
...
@@ -436,7 +436,7 @@ static int DEBUG_PTS_ReadTypedef(struct ParseTypedefData* ptd, const char* typen
* the file (we cannot keep the struct datatype** around, because address can
* change when realloc is done, so we must call over and over
* DEBUG_FileSubNr2StabEnum to keep the correct values around
* (however, keeping struct datatype* is valid
* (however, keeping struct datatype* is valid
))
*/
if
(
DEBUG_PTS_ReadTypeReference
(
ptd
,
&
filenr1
,
&
subnr1
)
==
-
1
)
return
-
1
;
...
...
@@ -466,6 +466,11 @@ static int DEBUG_PTS_ReadTypedef(struct ParseTypedefData* ptd, const char* typen
new_dt
=
DEBUG_NewDataType
(
DT_POINTER
,
NULL
);
if
(
DEBUG_PTS_ReadTypedef
(
ptd
,
NULL
,
&
ref_dt
)
==
-
1
)
return
-
1
;
DEBUG_SetPointerType
(
new_dt
,
ref_dt
);
break
;
case
'k'
:
/* 'const' modifier */
case
'B'
:
/* 'volatile' modifier */
/* just kinda ignore the modifier, I guess -gmt */
if
(
DEBUG_PTS_ReadTypedef
(
ptd
,
NULL
,
&
new_dt
)
==
-
1
)
return
-
1
;
break
;
case
'('
:
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