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

Commit ce337ecc authored by Jorge Ruesga's avatar Jorge Ruesga
Browse files

CMFM: Fix deadlock

Change-Id: I564b6510550aead6b6abce694a4720e451aa50f4
JIRA: CYAN-2650
Issue: https://jira.cyanogenmod.org/browse/CYAN-2650


Signed-off-by: default avatarJorge Ruesga <jorge@ruesga.com>
parent d60e42f5
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -806,6 +806,10 @@ public class NavigationView extends RelativeLayout implements

        //Check that it is really necessary change the directory
        if (!reload && this.mCurrentDir != null && this.mCurrentDir.compareTo(fNewDir) == 0) {
            synchronized (this.mSync) {
                mChangingDir = false;
                mSync.notify();
            }
            return;
        }