You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Referring to above, there are 3 places in method checkHeader() a null is returned. This will cause a Null Pointer Exception for those callers that are returned the result to a boolean data type and not the Boolean object.
Here are 2 examples of callers expecting boolean data type and not Boolean object:
bioformats/components/formats-bsd/src/loci/formats/tiff/TiffParser.java
Lines 199 to 220 in 678fd01
Referring to above, there are 3 places in method checkHeader() a null is returned. This will cause a Null Pointer Exception for those callers that are returned the result to a boolean data type and not the Boolean object.
Here are 2 examples of callers expecting boolean data type and not Boolean object:
bioformats/components/formats-bsd/src/loci/formats/out/PyramidOMETiffWriter.java
Line 129 in e4ffbe8
bioformats/components/formats-gpl/src/loci/formats/in/LeicaReader.java
Line 775 in 0a895ae
Here’s an example of code checking for NULL and taking appropriate action:
bioformats/components/formats-bsd/src/loci/formats/in/MinimalTiffReader.java
Lines 448 to 452 in 678fd01
If it’s thought that this is an issue, my Eclipse seems to indicate there are about 10 other callers with this NPE situation.
The text was updated successfully, but these errors were encountered: