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

Commit a3b702fa authored by Leon Scroggins's avatar Leon Scroggins Committed by Android (Google) Code Review
Browse files

Merge "ImageDecoder: throw FileNotFoundException on null"

parents aba57d6a 3d7ae4ef
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -286,6 +286,9 @@ public final class ImageDecoder implements AutoCloseable {

                return createFromStream(is, true, preferAnimation, this);
            }
            if (assetFd == null) {
                throw new FileNotFoundException(mUri.toString());
            }
            return createFromAssetFileDescriptor(assetFd, preferAnimation, this);
        }
    }
@@ -341,6 +344,9 @@ public final class ImageDecoder implements AutoCloseable {
    @NonNull
    private static ImageDecoder createFromAssetFileDescriptor(@NonNull AssetFileDescriptor assetFd,
            boolean preferAnimation, Source source) throws IOException {
        if (assetFd == null) {
            throw new FileNotFoundException();
        }
        final FileDescriptor fd = assetFd.getFileDescriptor();
        final long offset = assetFd.getStartOffset();