mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 01:41:59 -05: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
|
@ -13,6 +13,7 @@ void WindowComposer_main()
|
|||
FrameBuffer::initialize();
|
||||
EventLoop::initialize();
|
||||
WindowManager::initialize();
|
||||
AbstractScreen::initialize();
|
||||
|
||||
auto info = current->get_display_info();
|
||||
|
||||
|
|
|
@ -6,6 +6,11 @@
|
|||
|
||||
static AbstractScreen* s_the;
|
||||
|
||||
void AbstractScreen::initialize()
|
||||
{
|
||||
s_the = nullptr;
|
||||
}
|
||||
|
||||
AbstractScreen& AbstractScreen::the()
|
||||
{
|
||||
ASSERT(s_the);
|
||||
|
|
|
@ -16,6 +16,8 @@ public:
|
|||
Size size() const { return { width(), height() }; }
|
||||
Rect rect() const { return { 0, 0, width(), height() }; }
|
||||
|
||||
static void initialize();
|
||||
|
||||
protected:
|
||||
AbstractScreen(unsigned width, unsigned height);
|
||||
|
||||
|
|
Loading…
Reference in a new issue