Merge change If5722b3f into eclair

* changes:
  Dont NPE if the thumbnail file cannot be opened.
This commit is contained in:
Android (Google) Code Review
2009-09-29 19:52:23 -04:00

View File

@@ -119,7 +119,9 @@ public class MiniThumbFile {
// ignore exception // ignore exception
} }
} }
mChannel = mMiniThumbFile.getChannel(); if (mMiniThumbFile != null) {
mChannel = mMiniThumbFile.getChannel();
}
} }
return mMiniThumbFile; return mMiniThumbFile;
} }