Browse Source

DBus: Increase introspection buffer sizes

The P2P additions will add more data so
that the current buffers aren't big enough.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Johannes Berg 14 years ago
parent
commit
6d7111418d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      wpa_supplicant/dbus/dbus_new_introspect.c

+ 2 - 2
wpa_supplicant/dbus/dbus_new_introspect.c

@@ -43,7 +43,7 @@ static struct interfaces * add_interface(struct dl_list *list,
 	iface = os_zalloc(sizeof(struct interfaces));
 	if (!iface)
 		return NULL;
-	iface->xml = wpabuf_alloc(3000);
+	iface->xml = wpabuf_alloc(6000);
 	if (iface->xml == NULL) {
 		os_free(iface);
 		return NULL;
@@ -250,7 +250,7 @@ DBusMessage * wpa_dbus_introspect(DBusMessage *message,
 	DBusMessage *reply;
 	struct wpabuf *xml;
 
-	xml = wpabuf_alloc(4000);
+	xml = wpabuf_alloc(8000);
 	if (xml == NULL)
 		return NULL;