* dbus/dbus-message-factory.c:

Fix index into an array (patch by Peter Kümmel <syntheticpp at gmx.net>)
This commit is contained in:
John (J5) Palmieri 2006-07-12 16:52:44 +00:00
parent e3dc6e281a
commit b4474dac7c
2 changed files with 5 additions and 1 deletions

View file

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

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