* breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before

dereferencing.
This commit is contained in:
Tom Tromey 2012-01-25 15:57:04 +00:00
parent c2c7840a42
commit 5d26827631
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2012-01-25 Tom Tromey <tromey@redhat.com>
* breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before
dereferencing.
2012-01-24 Tom Tromey <tromey@redhat.com>
PR symtab/12406:

View file

@ -4303,7 +4303,7 @@ bpstat_stop_status (struct address_space *aspace,
"catch unload". */
for (bs = bs_head; bs != NULL; bs = bs->next)
{
if (bs->breakpoint_at->type == bp_shlib_event)
if (bs->breakpoint_at && bs->breakpoint_at->type == bp_shlib_event)
{
handle_solib_event ();
break;