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

Commit 3eaa370e authored by Eric Laurent's avatar Eric Laurent
Browse files

audioflinger: fix missing EffectBase member init

Fix missing initialization of EffectBase::mSuspend
introduced by commit 41709559.

Bug: 136294538
Test: make

Change-Id: I20de7712ff3701649c78da4e6172e58af3f1f625
Merged-In: I20de7712ff3701649c78da4e6172e58af3f1f625
parent e0b9a360
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -174,7 +174,8 @@ mutable Mutex mLock; // mutex for process, commands and han
    const audio_session_t     mSessionId; // audio session ID
    const effect_descriptor_t mDescriptor;// effect descriptor received from effect engine
    effect_state              mState = IDLE; // current activation state
    bool                      mSuspended; // effect is suspended: temporarily disabled by framework
    // effect is suspended: temporarily disabled by framework
    bool                      mSuspended = false;

    Vector<EffectHandle *>    mHandles;   // list of client handles
                // First handle in mHandles has highest priority and controls the effect module