]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
Followup Bug 19502 - Don't attempt to init va_list, not portable
authorColin Walters <walters@verbum.org>
Tue, 21 Apr 2009 17:11:54 +0000 (13:11 -0400)
committerColin Walters <walters@verbum.org>
Wed, 6 May 2009 16:51:18 +0000 (12:51 -0400)
dbus/dbus-string.c

index 85812c4884999cfd3d3d92f6eb47185459d3f068..6b9b2bfe347976cebf1fe5a8849f87c1f179829f 100644 (file)
@@ -1245,7 +1245,7 @@ _dbus_string_append_printf_valist  (DBusString        *str,
                                     va_list            args)
 {
   int len;
-  va_list args_copy = 0;
+  va_list args_copy;
 
   DBUS_STRING_PREAMBLE (str);