* memchr.c (memchr): Adjust condition to avoid infinite loop.

From-SVN: r40901
This commit is contained in:
Kaveh R. Ghazi 2001-03-28 04:12:45 +00:00 committed by Kaveh Ghazi
parent cd5289aa8f
commit 3e99ef610a
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-03-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* memchr.c (memchr): Adjust condition to avoid infinite loop.
Fri Mar 16 12:46:19 GMT 2001 Bernd Schmidt (bernds@redhat.com)
* gcc-2.95.3 Released.

View File

@ -50,7 +50,7 @@ memchr (src_void, c, length)
{
const unsigned char *src = (const unsigned char *)src_void;
while (--length >= 0)
while (length-- > 0)
{
if (*src == c)
return (PTR)src;