mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 00:38:24 -05:00
D-Bus: Increase introspection buffer size
It was apparently possible to hit the 20000 octet limit in some cases, so increase the limit to avoid process termination due to insufficient room for preparing a response to Introspect calls. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
79488da576
commit
4294d221d3
@ -257,7 +257,7 @@ DBusMessage * wpa_dbus_introspect(DBusMessage *message,
|
||||
DBusMessage *reply;
|
||||
struct wpabuf *xml;
|
||||
|
||||
xml = wpabuf_alloc(20000);
|
||||
xml = wpabuf_alloc(30000);
|
||||
if (xml == NULL)
|
||||
return NULL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user