Skip to content

Commit

Permalink
Fix stack overflow reported in #419
Browse files Browse the repository at this point in the history
  • Loading branch information
drewnoakes committed Jul 23, 2019
1 parent 1f15c79 commit 11cfd54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/com/drew/metadata/TagDescriptor.java
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ protected String getLightSourceDescription(short wbtype)
return "Other";
}

return getDescription(wbtype);
return "Unknown (" + wbtype + ")";
}

// EXIF UserComment, GPSProcessingMethod and GPSAreaInformation
Expand Down

0 comments on commit 11cfd54

Please sign in to comment.