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

Commit 808c739a authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change 23402 into eclair

* changes:
  Fix 2081525: NPE in MediaScannerService.
parents ce54003a a7bdedab
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -340,6 +340,7 @@ public class ExifInterface {
        ParsePosition pos = new ParsePosition(0);
        try {
            Date date = sFormatter.parse(dateTimeString, pos);
            if (date == null) return -1;
            return date.getTime();
        } catch (IllegalArgumentException ex) {
            return -1;