Fix a NULL-deref in CoverArtController.java
ImageIO.read() can return null in certain cases
This commit is contained in:
@@ -381,7 +381,10 @@ public class CoverArtController implements LastModified {
|
||||
InputStream in = null;
|
||||
try {
|
||||
in = getImageInputStream(coverArt);
|
||||
return scale(ImageIO.read(in), size, size);
|
||||
BufferedImage bimg = ImageIO.read(in);
|
||||
if (bimg != null) {
|
||||
return scale(bimg, size, size);
|
||||
}
|
||||
} catch (Throwable x) {
|
||||
LOG.warn("Failed to process cover art " + coverArt + ": " + x, x);
|
||||
} finally {
|
||||
|
||||
Reference in New Issue
Block a user