Merge change 27318 into eclair

* changes:
  Check that playlist entries refer to a row in the audio table.
This commit is contained in:
Android (Google) Code Review
2009-09-27 22:43:05 -04:00

View File

@@ -1273,7 +1273,8 @@ public class MediaScanner
}
}
if (bestMatch == null) {
// if the match is not for an audio file, bail out
if (bestMatch == null || ! mAudioUri.equals(bestMatch.mTableUri)) {
return false;
}