Commit 0fadedb2 by Geoff Keating Committed by Geoffrey Keating

vasprintf.c (int_vasprintf): Don't re-read the format character as this…

vasprintf.c (int_vasprintf): Don't re-read the format character as this mishandles strings like '%%s'.

* vasprintf.c (int_vasprintf): Don't re-read the format character
as this mishandles strings like '%%s'.

From-SVN: r31102
parent cfa9f252
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-12-05 Mark Mitchell <mark@codesourcery.com> 1999-12-05 Mark Mitchell <mark@codesourcery.com>
* splay-tree.c (splay_tree_new): Use struct splay_tree_node_s * splay-tree.c (splay_tree_new): Use struct splay_tree_node_s
......
...@@ -105,6 +105,7 @@ int_vasprintf (result, format, args) ...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment