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
20546c84
Commit
20546c84
authored
Oct 04, 2004
by
Robert Shearman
Committed by
Alexandre Julliard
Oct 04, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Check for string pointer being outside of the string table.
- Only parse typedefs on stabs entries that can have them.
parent
be7c95a3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
stabs.c
dlls/dbghelp/stabs.c
+17
-0
No files found.
dlls/dbghelp/stabs.c
View file @
20546c84
...
...
@@ -1094,6 +1094,7 @@ BOOL stabs_parse(struct module* module, const char* addr,
unsigned
int
stabbufflen
;
const
struct
stab_nlist
*
stab_ptr
;
const
char
*
strs
;
const
char
*
strs_end
;
int
strtabinc
;
char
symname
[
4096
];
unsigned
incl
[
32
];
...
...
@@ -1107,6 +1108,7 @@ BOOL stabs_parse(struct module* module, const char* addr,
nstab
=
stablen
/
sizeof
(
struct
stab_nlist
);
stab_ptr
=
(
const
struct
stab_nlist
*
)(
addr
+
staboff
);
strs
=
(
const
char
*
)(
addr
+
strtaboff
);
strs_end
=
strs
+
strtablen
;
memset
(
srcpath
,
0
,
sizeof
(
srcpath
));
memset
(
stabs_basic
,
0
,
sizeof
(
stabs_basic
));
...
...
@@ -1123,6 +1125,11 @@ BOOL stabs_parse(struct module* module, const char* addr,
for
(
i
=
0
;
i
<
nstab
;
i
++
,
stab_ptr
++
)
{
ptr
=
strs
+
stab_ptr
->
n_un
.
n_strx
;
if
((
ptr
>
strs_end
)
||
(
ptr
+
strlen
(
ptr
)
>
strs_end
))
{
WARN
(
"Bad stabs string %p
\n
"
,
ptr
);
continue
;
}
if
(
ptr
[
strlen
(
ptr
)
-
1
]
==
'\\'
)
{
/*
...
...
@@ -1145,6 +1152,15 @@ BOOL stabs_parse(struct module* module, const char* addr,
ptr
=
stabbuff
;
}
/* only symbol entries contain a typedef */
switch
(
stab_ptr
->
n_type
)
{
case
N_GSYM
:
case
N_LCSYM
:
case
N_STSYM
:
case
N_RSYM
:
case
N_LSYM
:
case
N_ROSYM
:
if
(
strchr
(
ptr
,
'='
)
!=
NULL
)
{
/*
...
...
@@ -1164,6 +1180,7 @@ BOOL stabs_parse(struct module* module, const char* addr,
continue
;
}
}
}
#if 0
const char* defs[] = {"","","","", /* 00 */
...
...
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