]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
DBus: Increase introspection buffer sizes
authorJohannes Berg <johannes.berg@intel.com>
Wed, 2 Feb 2011 15:01:29 +0000 (17:01 +0200)
committerJouni Malinen <j@w1.fi>
Wed, 2 Feb 2011 15:01:29 +0000 (17:01 +0200)
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>
wpa_supplicant/dbus/dbus_new_introspect.c

index c660c0404ec2fe674aaab85317911b879111005b..fd433df73619e2d2f9b82bffd425ad6ad98bfa19 100644 (file)
@@ -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;