]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
* dbus/dbus-message-factory.c:
authorJohn (J5) Palmieri <johnp@redhat.com>
Wed, 12 Jul 2006 16:52:44 +0000 (16:52 +0000)
committerJohn (J5) Palmieri <johnp@redhat.com>
Wed, 12 Jul 2006 16:52:44 +0000 (16:52 +0000)
  Fix index into an array (patch by Peter Kümmel <syntheticpp at gmx.net>)

ChangeLog
dbus/dbus-message-factory.c

index 07ce71838f276296fc3cf20f77e3a0861dac946d..fdd6a1409d5c67187abfe7161698dbf4cd44b41c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-07-12  John (J5) Palmieri  <johnp@redhat.com>
+       * dbus/dbus-message-factory.c:
+       Fix index into an array (patch by Peter Kümmel <syntheticpp at gmx.net>)
+
 2006-07-12  John (J5) Palmieri  <johnp@redhat.com>
        * dbus/dbus-connection-internal.h:
        * dbus/dbus-connection.c:
index 6b19422670a7496b21391499b969d38a42ac4efc..c3fb1bc1f2eb794c0ca4952045faaa87982d25e5 100644 (file)
@@ -623,7 +623,7 @@ generate_special (DBusMessageDataIter   *iter,
     }
   else if (item_seq == 16)
     {
-      char long_sig[DBUS_MAXIMUM_TYPE_RECURSION_DEPTH*4+8];
+      char long_sig[DBUS_MAXIMUM_TYPE_RECURSION_DEPTH*4+10];
       const char *v_STRING;
       int i;
       int n_begins;