aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorChristopher Faylor <me+cygwin@cgf.cx>2000-03-28 17:44:53 +0000
committerChristopher Faylor <me+cygwin@cgf.cx>2000-03-28 17:44:53 +0000
commit7d88144cc745a86947e8836ea1a25a9a495cc450 (patch)
tree03198e0d815290835efdc4189b8cae5bb02d62f4 /gdb
parent6d2ebf8bcc854cde411391c02ec4278a9d51922e (diff)
downloadgdb-7d88144cc745a86947e8836ea1a25a9a495cc450.zip
gdb-7d88144cc745a86947e8836ea1a25a9a495cc450.tar.gz
gdb-7d88144cc745a86947e8836ea1a25a9a495cc450.tar.bz2
* partial-stab.h: Add one more check against corrupted or irregular stabs
entry.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/partial-stab.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index bf08a13..7a74b26 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2000-03-28 Christopher Faylor <cgf@cygnus.com>
+
+ * partial-stab.h: Add one more check against corrupted or irregular
+ stabs entry.
+
Tue Mar 28 12:23:37 2000 Philippe De Muyter <phdm@macqel.be>
* gnu-regex.c (regerror): Function renamed from `__regerror'.
diff --git a/gdb/partial-stab.h b/gdb/partial-stab.h
index 87ab12a..9c4be68 100644
--- a/gdb/partial-stab.h
+++ b/gdb/partial-stab.h
@@ -393,7 +393,7 @@ switch (CUR_SYMBOL_TYPE)
#ifdef DBXREAD_ONLY
/* See if this is an end of function stab. */
- if (CUR_SYMBOL_TYPE == N_FUN && *namestring == '\000')
+ if (pst && CUR_SYMBOL_TYPE == N_FUN && *namestring == '\000')
{
unsigned long valu;