mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 13:09:48 +00:00
merge from gcc
This commit is contained in:
parent
6a9c388603
commit
30a1def20d
@ -1,3 +1,7 @@
|
||||
2001-03-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* memchr.c (memchr): Adjust condition to avoid infinite loop.
|
||||
|
||||
2001-03-23 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* cp-demangle.c (demangle_discriminator): `_0' is discriminator #1,
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user