From b719bf7fde743cd7fe1ffb872d20854a8f920578 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 8 May 2019 03:35:05 +0200 Subject: [PATCH] GEventLoop: Calm down with the Vector inline capacity for messages. Using nested event loops like this would cause the stack to grow huge. --- LibGUI/GEventLoop.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LibGUI/GEventLoop.h b/LibGUI/GEventLoop.h index 4e235aa21d..08842ce0c8 100644 --- a/LibGUI/GEventLoop.h +++ b/LibGUI/GEventLoop.h @@ -68,7 +68,7 @@ private: ByteBuffer extra_data; }; - Vector m_unprocessed_bundles; + Vector m_unprocessed_bundles; static pid_t s_server_pid; static int s_my_client_id; static int s_event_fd;