[PATCH 2/4] Fix incorrect indirection

Daniel Black daniel.black@au1.ibm.com
Mon Feb 27 22:07:00 GMT 2017


On 27/02/17 23:49, Nick Clifton wrote:
> Hi Daniel,
> 
>> --- a/binutils/stabs.c
>> +++ b/binutils/stabs.c
>> @@ -2702,7 +2702,7 @@ parse_stab_members (void *dhandle, struct stab_handle *info,
>>  	      ++*pp;
>>  	      voffset &= 0x7fffffff;
>>  
>> -	      if (**pp == ';' || *pp == '\0')
>> +	      if (**pp == ';' || **pp == '\0')
> 
> This has already been fixed by commit b972a0d6

Apologies Nick and Alan,

Seems I was looking at the binutils-2_27-branch rather than master.

Sorry for wasting your time.

> 
> Cheers
>   Nick
> 



More information about the Binutils mailing list