1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:07:45 +00:00

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
parent b227b57508
commit b719bf7fde

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;