mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-01-29 08:14:02 -05:00
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>
This commit is contained in:
parent
d1c8ac88b9
commit
6d7111418d
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user