mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:17:44 +00:00
Fix uninitialized AbstractScreen instance pointer.
...yeah yeah, one day I'm gonna zero out the kernel's BSS segment. Soon..
This commit is contained in:
parent
f6d2c3ed87
commit
d1ceb4b603
3 changed files with 8 additions and 0 deletions
|
@ -6,6 +6,11 @@
|
|||
|
||||
static AbstractScreen* s_the;
|
||||
|
||||
void AbstractScreen::initialize()
|
||||
{
|
||||
s_the = nullptr;
|
||||
}
|
||||
|
||||
AbstractScreen& AbstractScreen::the()
|
||||
{
|
||||
ASSERT(s_the);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue