[PATCH] elf: Count components of the expanded path in _dl_init_path [BZ #22607]

Florian Weimer fweimer@redhat.com
Thu Dec 14 13:48:00 GMT 2017


On 12/14/2017 02:45 PM, Andreas Schwab wrote:
> On Dez 14 2017, fweimer@redhat.com (Florian Weimer) wrote:
> 
>> +      {
>> +	const char *cp = llp_tmp;
>> +	while (*cp)
>> +	  {
>> +	    if (*cp == ':' || *cp == ';')
>> +	      ++nllp;
>> +	    ++cp;
>> +	  }
>> +      }
> 
> No need for the outermost braces.

I included them to limit the scope of cp, to make sure that there aren't 
any uses afterwards because of the changed value of cp compared to the 
original code.

Thanks,
Florian



More information about the Libc-alpha mailing list