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

Commit 9ca2596b authored by Henrik B Andersson's avatar Henrik B Andersson Committed by Johan Redestig
Browse files

Fix of uninitialized mIsDrm variable.

The mIsDrm is a bool that isn't initialized.
This causes it to be true in most default cases.

Change-Id: I41b534514bf6a3ca88a9f0994b814d55fcd7453b
parent f0e3acd0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ public:
    }

protected:
    MediaExtractor() {}
    MediaExtractor() : mIsDrm(false) {}
    virtual ~MediaExtractor() {}

private: