This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Extend SystemTap SDT probe argument parser


On Tuesday, December 17 2013, Pedro Alves wrote:

> On 12/17/2013 05:27 PM, Sergio Durigan Junior wrote:
>> +/* Helper function to print a list of strings, represented as "const
>> +   char *const *".  The list is printed comma-separated.  */
>> +
>> +static char *
>> +pstring_list (const char *const *list)
>> +{
>> +  static char ret[100];
>> +  const char *const *p;
>> +  size_t offset = 0;
>> +
>> +  if (list == NULL)
>> +    return "(null)";
>> +
>> +  ret[0] = '\0';
>> +  for (p = list; *p != NULL && offset < sizeof (ret); ++p)
>> +    {
>> +      size_t s = xsnprintf (ret + offset, sizeof (ret) - offset, "%s, ", *p);
>> +      offset += 2 + s;
>> +    }
>> +
>> +  gdb_assert (offset - 2 < sizeof (ret));
>
> Note this will assert if the list is empty (but not NULL), i.e., { NULL },
> because offset will be 0, and "offset - 2" will wrap around
> (offset is unsigned size_t.)  I suggest either moving the assert within
> the if below, or handle that case especially, printing "(empty)"
> or some such.

Thanks, nice catch.  I moved the assert within the "if".

-- 
Sergio


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]