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
f653a09d
Commit
f653a09d
authored
Oct 03, 2005
by
Eric Pouech
Committed by
Alexandre Julliard
Oct 03, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- N_PSYM stabs blocks (aka parameters) can also contain a typedef
- shorten some paths
parent
de02b20c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
stabs.c
dlls/dbghelp/stabs.c
+8
-2
No files found.
dlls/dbghelp/stabs.c
View file @
f653a09d
...
...
@@ -1200,6 +1200,7 @@ BOOL stabs_parse(struct module* module, unsigned long load_offset,
case
N_RSYM
:
case
N_LSYM
:
case
N_ROSYM
:
case
N_PSYM
:
if
(
strchr
(
ptr
,
'='
)
!=
NULL
)
{
/*
...
...
@@ -1456,8 +1457,13 @@ BOOL stabs_parse(struct module* module, unsigned long load_offset,
int
len
=
strlen
(
ptr
);
if
(
ptr
[
len
-
1
]
!=
'/'
)
{
strcpy
(
currpath
,
srcpath
);
strcat
(
currpath
,
ptr
);
if
(
ptr
[
0
]
==
'/'
)
strcpy
(
currpath
,
ptr
);
else
{
strcpy
(
currpath
,
srcpath
);
strcat
(
currpath
,
ptr
);
}
stabs_reset_includes
();
compiland
=
symt_new_compiland
(
module
,
currpath
);
source_idx
=
source_new
(
module
,
currpath
);
...
...
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