diff options
author | Christopher Faylor <me+cygwin@cgf.cx> | 2001-05-31 02:58:57 +0000 |
---|---|---|
committer | Christopher Faylor <me+cygwin@cgf.cx> | 2001-05-31 02:58:57 +0000 |
commit | 34a7837abd953d4a3c4d95a09e9d1fa1551c644b (patch) | |
tree | 80a8c1e5cfee4eb0a5cecd7aa1f1032fa273dda2 | |
parent | 371b7465e40c2715bf7496d2f7950e987f62443e (diff) | |
download | gdb-34a7837abd953d4a3c4d95a09e9d1fa1551c644b.zip gdb-34a7837abd953d4a3c4d95a09e9d1fa1551c644b.tar.gz gdb-34a7837abd953d4a3c4d95a09e9d1fa1551c644b.tar.bz2 |
* partial-stab.h: Consistently guard against pst being NULL.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/partial-stab.h | 9 |
2 files changed, 9 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5ab1171..b1054b4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2001-05-29 Christopher Faylor <cgf@redhat.com> + + * partial-stab.h: Consistently guard against pst being NULL. + 2001-05-29 Alexandre Oliva <aoliva@redhat.com> * symfile.c (compare_psymbols, compare_symbols): Declare using diff --git a/gdb/partial-stab.h b/gdb/partial-stab.h index fcfb2ef..5dadf44 100644 --- a/gdb/partial-stab.h +++ b/gdb/partial-stab.h @@ -600,10 +600,11 @@ switch (CUR_SYMBOL_TYPE) the bounds created by N_SO symbols. If that's the case use the address of this function as the low bound for the partial symbol table. */ - if (textlow_not_set - || (pst && CUR_SYMBOL_VALUE < pst->textlow - && CUR_SYMBOL_VALUE - != ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile)))) + if (pst + && (textlow_not_set + || (pst && CUR_SYMBOL_VALUE < pst->textlow + && CUR_SYMBOL_VALUE + != ANOFFSET (objfile->section_offsets, SECT_OFF_TEXT (objfile))))) { pst->textlow = CUR_SYMBOL_VALUE; textlow_not_set = 0; |