Unverified Commit 2c4665ff authored by Nicolas Hug's avatar Nicolas Hug Committed by GitHub
Browse files

[FBcode -> GH] Fix fetch_png_exif_orientation (#8345)

parent a0c79b39
...@@ -211,6 +211,7 @@ inline int fetch_png_exif_orientation(png_structp png_ptr, png_infop info_ptr) { ...@@ -211,6 +211,7 @@ inline int fetch_png_exif_orientation(png_structp png_ptr, png_infop info_ptr) {
if (exif && num_exif > 0) { if (exif && num_exif > 0) {
return fetch_exif_orientation(exif, num_exif); return fetch_exif_orientation(exif, num_exif);
} }
return -1;
} }
#endif // #if PNG_FOUND && defined(PNG_eXIf_SUPPORTED) #endif // #if PNG_FOUND && defined(PNG_eXIf_SUPPORTED)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment