From 5d26827631bff1bd94ab13786fc4f05ab8bfe9e3 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 25 Jan 2012 15:57:04 +0000 Subject: * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before dereferencing. --- gdb/breakpoint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/breakpoint.c') diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 0da099b..ec7f348 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -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; -- cgit v1.1