diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/ada-lang.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8d425a7..653771a 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2018-05-22 Joel Brobecker <brobecker@adacore.com> + + * ada-lang.c (catch_assert_command): Pass empty string instead + of NULL for excep_string argument. + 2018-05-22 Maciej W. Rozycki <macro@mips.com> * mips-linux-nat.c (mips64_linux_register_addr): Return -1 if diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index eaf3058..64bddc2 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -13408,7 +13408,7 @@ catch_assert_command (const char *arg_entry, int from_tty, arg = ""; catch_ada_assert_command_split (arg, cond_string); create_ada_exception_catchpoint (gdbarch, ada_catch_assert, - NULL, cond_string, + "", cond_string, tempflag, 1 /* enabled */, from_tty); } |