diff options
| author | 2016-07-25 11:53:13 +0900 | |
|---|---|---|
| committer | 2016-07-29 01:02:27 +0000 | |
| commit | 90be39c7bb53e7840831e62054cec9ebd27f82a6 (patch) | |
| tree | 10e9431408d054632f4ec98116494ed30ab818f5 | |
| parent | 3e582390b3cfcf82f51ac11d6d8f5074a91fb44b (diff) | |
DO NOT MERGE: Fix CTS regression
Bug: 30297223, Bug: 30437363
Change-Id: I7b18af40e4eac2713577204428fbfb96cc346582
| -rw-r--r-- | media/java/android/media/ExifInterface.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/media/java/android/media/ExifInterface.java b/media/java/android/media/ExifInterface.java index c5e978f8703c..74bb55bae911 100644 --- a/media/java/android/media/ExifInterface.java +++ b/media/java/android/media/ExifInterface.java @@ -1330,12 +1330,12 @@ public class ExifInterface { * determine whether the image data format is JPEG or not. */ private void loadAttributes() throws IOException { + // Initialize mAttributes. + for (int i = 0; i < EXIF_TAGS.length; ++i) { + mAttributes[i] = new HashMap(); + } try { InputStream in = new FileInputStream(mFilename); - // Initialize mAttributes. - for (int i = 0; i < EXIF_TAGS.length; ++i) { - mAttributes[i] = new HashMap(); - } getJpegAttributes(in); } catch (IOException e) { // Ignore exceptions in order to keep the compatibility with the old versions of |