aboutsummaryrefslogtreecommitdiff
path: root/gdb/symtab.c
diff options
context:
space:
mode:
authorFred Fish <fnf@specifix.com>1992-11-15 20:26:35 +0000
committerFred Fish <fnf@specifix.com>1992-11-15 20:26:35 +0000
commit45a655b0b67e5f21ee23119cc34bf7125965e59d (patch)
tree834e3de0bb0eaeb019b562194d425f59aec7e73a /gdb/symtab.c
parent6845e2da3e8d8bc547185d00efb7687481ad29c1 (diff)
downloadgdb-45a655b0b67e5f21ee23119cc34bf7125965e59d.zip
gdb-45a655b0b67e5f21ee23119cc34bf7125965e59d.tar.gz
gdb-45a655b0b67e5f21ee23119cc34bf7125965e59d.tar.bz2
* Makefile.in (VERSION): Bump to 4.7.2
* symtab.c (find_pc_symtab): Fix return of random value to caller.
Diffstat (limited to 'gdb/symtab.c')
-rw-r--r--gdb/symtab.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/symtab.c b/gdb/symtab.c
index f5f0455..3bea1ec 100644
--- a/gdb/symtab.c
+++ b/gdb/symtab.c
@@ -970,7 +970,7 @@ find_pc_symtab (pc)
{
register struct block *b;
struct blockvector *bv;
- register struct symtab *s = 0;
+ register struct symtab *s = NULL;
register struct partial_symtab *ps;
register struct objfile *objfile;
@@ -985,6 +985,7 @@ find_pc_symtab (pc)
return (s);
}
+ s = NULL;
ps = find_pc_psymtab (pc);
if (ps)
{
@@ -992,6 +993,7 @@ find_pc_symtab (pc)
printf_filtered ("(Internal error: pc 0x%x in read in psymtab, but not in symtab.)\n", pc);
s = PSYMTAB_TO_SYMTAB (ps);
}
+ return (s);
}
/* Find the source file and line number for a given PC value.