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

Commit 408594c7 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Fix mms pdp activation issue"

parents f9dfc57a 78440223
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -256,8 +256,10 @@ public class ApnContext {

    public void decRefCount() {
        synchronized (mRefCountLock) {
            if (mRefCount-- == 1) {
            if ((mRefCount > 0) && (mRefCount-- == 1)) {
                mDcTracker.setEnabled(mDcTracker.apnTypeToId(mApnType), false);
            } else {
                log("Ignoring defCount request as mRefCount is: " + mRefCount);
            }
        }
    }