From: Sergio Durigan Junior Date: Thu, 8 Jun 2017 20:58:25 +0000 (-0400) Subject: Fix possible bug when no args have been provided to the executable X-Git-Url: http://drtracing.org/?a=commitdiff_plain;ds=sidebyside;h=2f91880f3afb3cc521111dfcc99b214c77aa97a1;p=deliverable%2Fbinutils-gdb.git Fix possible bug when no args have been provided to the executable Hi, This bug is related to: On stringify_argv, we have to check if args[0] is not NULL before stringifying anything, otherwise we might do the wrong thing when trimming the "ret" string in the end. args[0] will be NULL when no arguments are passed to the inferior that will be started. Checked in as obvious. gdb/ChangeLog: 2017-06-08 Sergio Durigan Junior * common/common-utils.c (stringify_argv): Check for "arg[0] != NULL". --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 993fabe7b6..5ebc7f805f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2017-06-08 Sergio Durigan Junior + + * common/common-utils.c (stringify_argv): Check for "arg[0] != + NULL". + 2017-06-08 Alan Hayward * mn10300-tdep.c (MN10300_MAX_REGISTER_SIZE): Add. diff --git a/gdb/common/common-utils.c b/gdb/common/common-utils.c index 793ab3b25b..e75a1b988e 100644 --- a/gdb/common/common-utils.c +++ b/gdb/common/common-utils.c @@ -337,7 +337,7 @@ stringify_argv (const std::vector &args) { std::string ret; - if (!args.empty ()) + if (!args.empty () && args[0] != NULL) { for (auto s : args) if (s != NULL)