mirror of
https://git.freebsd.org/ports.git
synced 2025-05-12 23:31:50 -04:00
20 lines
550 B
Text
20 lines
550 B
Text
--- jbig2_image_png.c
|
|
+++ jbig2_image_png.c
|
|
@@ -33,7 +33,7 @@
|
|
{
|
|
png_size_t check;
|
|
|
|
- check = fwrite(data, 1, length, (png_FILE_p)png_ptr->io_ptr);
|
|
+ check = fwrite(data, 1, length, (png_FILE_p)png_get_io_ptr(png_ptr));
|
|
if (check != length) {
|
|
png_error(png_ptr, "Write Error");
|
|
}
|
|
@@ -43,7 +43,7 @@
|
|
jbig2_png_flush(png_structp png_ptr)
|
|
{
|
|
png_FILE_p io_ptr;
|
|
- io_ptr = (png_FILE_p)CVT_PTR((png_ptr->io_ptr));
|
|
+ io_ptr = (png_FILE_p)png_get_io_ptr(png_ptr);
|
|
if (io_ptr != NULL)
|
|
fflush(io_ptr);
|
|
}
|