mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-27 14:00:30 +00:00
* 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>
|
||||
|
||||
* floatformat.c: Add casts to avoid signed/unsigned warnings.
|
||||
|
@ -105,6 +105,7 @@ int_vasprintf (result, format, args)
|
||||
(void) va_arg (ap, char *);
|
||||
break;
|
||||
}
|
||||
p++;
|
||||
}
|
||||
}
|
||||
#ifdef TEST
|
||||
|
Loading…
Reference in New Issue
Block a user