mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-03 06:50:12 +01:00
* dbus/dbus-message-factory.c:
Fix index into an array (patch by Peter Kümmel <syntheticpp at gmx.net>)
This commit is contained in:
parent
e3dc6e281a
commit
b4474dac7c
2 changed files with 5 additions and 1 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue