[PATCH] Fix 'array subscript is above array bounds' warning in res_send.c

Andreas Schwab schwab@suse.de
Tue Dec 16 10:17:00 GMT 2014


Siddhesh Poyarekar <siddhesh@redhat.com> writes:

> diff --git a/resolv/res_send.c b/resolv/res_send.c
> index 4a95eb8..5a9882c 100644
> --- a/resolv/res_send.c
> +++ b/resolv/res_send.c
> @@ -429,7 +429,7 @@ __libc_res_nsend(res_state statp, const u_char *buf, int buflen,
>  				while (ns < MAXNS
>  				       && EXT(statp).nsmap[ns] != MAXNS)
>  					ns++;
> -				if (ns == MAXNS)
> +				if (ns >= MAXNS)

How is that possible?

Andreas.

-- 
Andreas Schwab, SUSE Labs, schwab@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."



More information about the Libc-alpha mailing list