dbus/dbus dbus-message-factory.c,1.9,1.10
John Palmieri
johnp at kemper.freedesktop.org
Wed Jul 12 09:52:46 PDT 2006
Update of /cvs/dbus/dbus/dbus
In directory kemper:/tmp/cvs-serv22973/dbus
Modified Files:
dbus-message-factory.c
Log Message:
* dbus/dbus-message-factory.c:
Fix index into an array (patch by Peter Kümmel <syntheticpp at gmx.net>)
Index: dbus-message-factory.c
===================================================================
RCS file: /cvs/dbus/dbus/dbus/dbus-message-factory.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- dbus-message-factory.c 6 Sep 2005 22:38:54 -0000 1.9
+++ dbus-message-factory.c 12 Jul 2006 16:52:44 -0000 1.10
@@ -623,7 +623,7 @@
}
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;
More information about the dbus-commit
mailing list