* 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:
Ralf Habacker 2007-05-14 15:34:46 +00:00
parent 90e35e17e5
commit d090a33096
2 changed files with 8 additions and 2 deletions

View file

@ -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

View 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;