diff options
Diffstat (limited to 'gdb/common')
-rw-r--r-- | gdb/common/common-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/common/common-utils.c b/gdb/common/common-utils.c index 793ab3b..e75a1b9 100644 --- a/gdb/common/common-utils.c +++ b/gdb/common/common-utils.c @@ -337,7 +337,7 @@ stringify_argv (const std::vector<char *> &args) { std::string ret; - if (!args.empty ()) + if (!args.empty () && args[0] != NULL) { for (auto s : args) if (s != NULL) |