GEventLoop: Calm down with the Vector inline capacity for messages.

Using nested event loops like this would cause the stack to grow huge.
This commit is contained in:
Andreas Kling 2019-05-08 03:35:05 +02:00
commit b719bf7fde
Notes: sideshowbarker 2024-07-19 14:12:00 +09:00

View file

@ -68,7 +68,7 @@ private:
ByteBuffer extra_data;
};
Vector<IncomingWSMessageBundle, 64> m_unprocessed_bundles;
Vector<IncomingWSMessageBundle> m_unprocessed_bundles;
static pid_t s_server_pid;
static int s_my_client_id;
static int s_event_fd;