[PATCH 2/4] Fix incorrect indirection

Nick Clifton nickc@redhat.com
Mon Feb 27 12:49:00 GMT 2017


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

Cheers
  Nick



More information about the Binutils mailing list