* vasprintf.c (int_vasprintf): Don't re-read the format character
as this mishandles strings like '%%s'.
This commit is contained in:
parent
b1f10154aa
commit
df840b63dc
@ -1,3 +1,8 @@
|
|||||||
|
1999-12-27 Geoff Keating <geoffk@cygnus.com>
|
||||||
|
|
||||||
|
* vasprintf.c (int_vasprintf): Don't re-read the format character
|
||||||
|
as this mishandles strings like '%%s'.
|
||||||
|
|
||||||
1999-08-03 Ian Lance Taylor <ian@zembu.com>
|
1999-08-03 Ian Lance Taylor <ian@zembu.com>
|
||||||
|
|
||||||
* floatformat.c: Add casts to avoid signed/unsigned warnings.
|
* floatformat.c: Add casts to avoid signed/unsigned warnings.
|
||||||
|
@ -105,6 +105,7 @@ int_vasprintf (result, format, args)
|
|||||||
(void) va_arg (ap, char *);
|
(void) va_arg (ap, char *);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
p++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#ifdef TEST
|
#ifdef TEST
|
||||||
|
Loading…
Reference in New Issue
Block a user