diff options
author | Pedro Alves <palves@redhat.com> | 2019-08-21 21:11:33 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2019-08-21 21:11:33 +0100 |
commit | 26c957f12762816a90d5145c7c527ca48c890855 (patch) | |
tree | e3e0b88cba61e55a95d287efa7af5c086c77910a /gdb/testsuite/gdb.base | |
parent | c07aae6e727ca8ae2b3ef123d920b7cef2aff8c6 (diff) | |
download | binutils-gdb-26c957f12762816a90d5145c7c527ca48c890855.tar.gz |
Fix nullptr in with_command_1
Running 'with' without arguments crashes GDB. This fixes it.
gdb/ChangeLog:
2019-08-21 Bogdan Harjoc <harjoc@gmail.com>
* cli/cli-cmds.c (with_command_1): Error out if no arguments.
gdb/testsuite/ChangeLog:
2019-08-21 Pedro Alves <palves@redhat.com>
* gdb.base/with.exp: Test "with" with no arguments.
Diffstat (limited to 'gdb/testsuite/gdb.base')
-rw-r--r-- | gdb/testsuite/gdb.base/with.exp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.base/with.exp b/gdb/testsuite/gdb.base/with.exp index 9ea768563a3..a972296d78f 100644 --- a/gdb/testsuite/gdb.base/with.exp +++ b/gdb/testsuite/gdb.base/with.exp @@ -220,6 +220,8 @@ with_test_prefix "run control" { # Check errors. with_test_prefix "errors" { + gdb_test "with" "Missing arguments\\." + # Try both an unknown root setting and an unknown prefixed # setting. The errors come from different locations in the # sources. |