mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-26 19:32:06 -05:00
LibConfig: VERIFY that a Core::EventLoop exists before connecting
It's not possible to connect to ConfigServer without having an event loop available. This VERIFY makes it much easier to understand why things are not working. :^)
This commit is contained in:
parent
67a0fa2b78
commit
870ecd5190
1 changed files with 3 additions and 1 deletions
|
@ -12,8 +12,10 @@ static RefPtr<Client> s_the = nullptr;
|
|||
|
||||
Client& Client::the()
|
||||
{
|
||||
if (!s_the || !s_the->is_open())
|
||||
if (!s_the || !s_the->is_open()) {
|
||||
VERIFY(Core::EventLoop::has_been_instantiated());
|
||||
s_the = Client::construct();
|
||||
}
|
||||
return *s_the;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue