Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7fecf8c1 authored by Eric Hassold's avatar Eric Hassold
Browse files

Initialize reference counter for egl_display_t

Add missing member initialization for reference counter, used to determine
if a context is ready.

Change-Id: I45f81177ac2851129681f827afe015b60b3cd73c
parent b484ff5e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -120,7 +120,7 @@ struct egl_display_t {

    SortedVector<egl_object_t*> objects;

    egl_display_t() : magic('_dpy'), numTotalConfigs(0), configs(0) { }
    egl_display_t() : magic('_dpy'), numTotalConfigs(0), configs(0), refs(0) { }
    ~egl_display_t() { magic = 0; }
    inline bool isReady() const { return (refs > 0); }
    inline bool isValid() const { return magic == '_dpy'; }