mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-08 09:08:15 +02:00
* dbus/dbus-sysdeps-win.c (_dbus_printf_string_upper_bound): compile fix for MS Platform SDK 6 patch from Michael Luschas <mluschas@gmail.com>
This commit is contained in:
parent
90e35e17e5
commit
d090a33096
2 changed files with 8 additions and 2 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2007-05-14 Ralf Habacker <ralf.habacker@freenet.de>
|
||||
|
||||
* dbus/dbus-sysdeps-win.c (_dbus_printf_string_upper_bound):
|
||||
compile fix for MS Platform SDK 6
|
||||
patch from Michael Luschas <mluschas@gmail.com>
|
||||
|
||||
2007-05-10 John (J5) Palmieri <johnp@redhat.com>
|
||||
|
||||
* dbus-1.pc.in: add daemondir to pc file
|
||||
|
|
|
|||
|
|
@ -1609,12 +1609,12 @@ int _dbus_printf_string_upper_bound (const char *format,
|
|||
*/
|
||||
char p[1024];
|
||||
int len;
|
||||
len = vsnprintf (p, sizeof(p)-1, format, args);
|
||||
len = _vsnprintf (p, sizeof(p)-1, format, args);
|
||||
if (len == -1) // try again
|
||||
{
|
||||
char *p;
|
||||
p = malloc (strlen(format)*3);
|
||||
len = vsnprintf (p, sizeof(p)-1, format, args);
|
||||
len = _vsnprintf (p, sizeof(p)-1, format, args);
|
||||
free(p);
|
||||
}
|
||||
return len;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue