mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-12 02:35:28 +01:00
return 1 more for the trailing \0 when using vsnprintf. (#69474)
2002-01-23 Laszlo Peter <laca@ireland.sun.com> * glib/gmessages.c (g_printf_string_upper_bound): return 1 more for the trailing \0 when using vsnprintf. (#69474)
This commit is contained in:
parent
d16e73251f
commit
98a36f8237
@ -1,3 +1,8 @@
|
||||
2002-01-23 Laszlo Peter <laca@ireland.sun.com>
|
||||
|
||||
* glib/gmessages.c (g_printf_string_upper_bound): return 1 more
|
||||
for the trailing '\0' when using vsnprintf. (#69474)
|
||||
|
||||
2002-01-23 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/gconvert.c: (strdup_len): Not used on Windows, don't even
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-01-23 Laszlo Peter <laca@ireland.sun.com>
|
||||
|
||||
* glib/gmessages.c (g_printf_string_upper_bound): return 1 more
|
||||
for the trailing '\0' when using vsnprintf. (#69474)
|
||||
|
||||
2002-01-23 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/gconvert.c: (strdup_len): Not used on Windows, don't even
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-01-23 Laszlo Peter <laca@ireland.sun.com>
|
||||
|
||||
* glib/gmessages.c (g_printf_string_upper_bound): return 1 more
|
||||
for the trailing '\0' when using vsnprintf. (#69474)
|
||||
|
||||
2002-01-23 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/gconvert.c: (strdup_len): Not used on Windows, don't even
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-01-23 Laszlo Peter <laca@ireland.sun.com>
|
||||
|
||||
* glib/gmessages.c (g_printf_string_upper_bound): return 1 more
|
||||
for the trailing '\0' when using vsnprintf. (#69474)
|
||||
|
||||
2002-01-23 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/gconvert.c: (strdup_len): Not used on Windows, don't even
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-01-23 Laszlo Peter <laca@ireland.sun.com>
|
||||
|
||||
* glib/gmessages.c (g_printf_string_upper_bound): return 1 more
|
||||
for the trailing '\0' when using vsnprintf. (#69474)
|
||||
|
||||
2002-01-23 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/gconvert.c: (strdup_len): Not used on Windows, don't even
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-01-23 Laszlo Peter <laca@ireland.sun.com>
|
||||
|
||||
* glib/gmessages.c (g_printf_string_upper_bound): return 1 more
|
||||
for the trailing '\0' when using vsnprintf. (#69474)
|
||||
|
||||
2002-01-23 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/gconvert.c: (strdup_len): Not used on Windows, don't even
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-01-23 Laszlo Peter <laca@ireland.sun.com>
|
||||
|
||||
* glib/gmessages.c (g_printf_string_upper_bound): return 1 more
|
||||
for the trailing '\0' when using vsnprintf. (#69474)
|
||||
|
||||
2002-01-23 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/gconvert.c: (strdup_len): Not used on Windows, don't even
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-01-23 Laszlo Peter <laca@ireland.sun.com>
|
||||
|
||||
* glib/gmessages.c (g_printf_string_upper_bound): return 1 more
|
||||
for the trailing '\0' when using vsnprintf. (#69474)
|
||||
|
||||
2002-01-23 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* glib/gconvert.c: (strdup_len): Not used on Windows, don't even
|
||||
|
@ -1181,7 +1181,7 @@ g_printf_string_upper_bound (const gchar *format,
|
||||
{
|
||||
#if HAVE_C99_VSNPRINTF
|
||||
gchar c;
|
||||
return vsnprintf (&c, 1, format, args);
|
||||
return vsnprintf (&c, 1, format, args) + 1;
|
||||
#else
|
||||
return printf_string_upper_bound (format, TRUE, args);
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user