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

Commit a4d4c200 authored by Marco Nelissen's avatar Marco Nelissen Committed by Android Git Automerger
Browse files

am 1ed64c65: am 899c15ef: am db816cef: Merge "Make sure we clean up"

* commit '1ed64c65':
  Make sure we clean up
parents 7379b520 1ed64c65
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -1185,6 +1185,7 @@ public class MediaScanner
        HashSet<String> existingFiles = new HashSet<String>();
        String directory = "/sdcard/DCIM/.thumbnails";
        String [] files = (new File(directory)).list();
        Cursor c = null;
        if (files == null)
            files = new String[0];

@@ -1194,7 +1195,7 @@ public class MediaScanner
        }

        try {
            Cursor c = mMediaProvider.query(
            c = mMediaProvider.query(
                    mPackageName,
                    mThumbsUri,
                    new String [] { "_data" },
@@ -1219,11 +1220,12 @@ public class MediaScanner
            }

            Log.v(TAG, "/pruneDeadThumbnailFiles... " + c);
        } catch (RemoteException e) {
            // We will soon be killed...
        } finally {
            if (c != null) {
                c.close();
            }
        } catch (RemoteException e) {
            // We will soon be killed...
        }
    }