Merge pull request #14 from czarkoff/png14

Replaced remaining instance of png_infopp_NULL
This commit is contained in:
Daniel Beer 2016-08-11 13:48:54 +12:00 committed by GitHub
commit b19987eb6a

View file

@ -286,7 +286,7 @@ out:
if (info_ptr) if (info_ptr)
png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL); png_destroy_read_struct(&png_ptr, &info_ptr, (png_infopp)NULL);
else else
png_destroy_read_struct(&png_ptr, png_infopp_NULL, (png_infopp)NULL); png_destroy_read_struct(&png_ptr, (png_infopp)NULL, (png_infopp)NULL);
} }
if (infile) if (infile)
fclose(infile); fclose(infile);