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

Commit 4606d5dd authored by Mathias Agopian's avatar Mathias Agopian Committed by Android (Google) Code Review
Browse files

Merge "fix uninitialized variable in DisplayHardware" into kraken

parents 5d75a181 51c66aa4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@ void checkEGLErrors(const char* token)
DisplayHardware::DisplayHardware(
        const sp<SurfaceFlinger>& flinger,
        uint32_t dpy)
    : DisplayHardwareBase(flinger, dpy)
    : DisplayHardwareBase(flinger, dpy), mFlags(0)
{
    init(dpy);
}