Skip to content
Snippets Groups Projects
Commit d7abbd01 authored by Pierre Lamot's avatar Pierre Lamot
Browse files

qt: fix uninitialized variables in DComp compositor

  This was causing crashes when releasing the object after a failed init.
parent 52febc5c
No related branches found
No related tags found
No related merge requests found
Pipeline #19152 passed with stage
in 15 minutes and 54 seconds
......@@ -59,9 +59,9 @@ private:
static void window_unset_fullscreen(struct vout_window_t *);
static void window_set_fullscreen(struct vout_window_t *, const char *id);
intf_thread_t *m_intf;
intf_thread_t *m_intf = nullptr;
MainInterface* m_rootWindow;
MainInterface* m_rootWindow = nullptr;
std::unique_ptr<CompositorDCompositionUISurface> m_uiSurface;
vout_window_t *m_window = nullptr;
std::unique_ptr<MainUI> m_ui;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment