Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 87553 | Differences between
and this patch

Collapse All | Expand All

(-)gimp-2.2.11/plug-ins/common/png.c (-2 / +4 lines)
Lines 1012-1018 Link Here
1012
   * Done with the file...
1012
   * Done with the file...
1013
   */
1013
   */
1014
1014
1015
  png_read_destroy (pp, info, NULL);
1015
  png_destroy_read_struct(&pp, &info, NULL);
1016
  //png_read_destroy (pp, info, NULL);
1016
1017
1017
  g_free (pixel);
1018
  g_free (pixel);
1018
  g_free (pixels);
1019
  g_free (pixels);
Lines 1441-1447 Link Here
1441
    };
1442
    };
1442
1443
1443
  png_write_end (pp, info);
1444
  png_write_end (pp, info);
1444
  png_write_destroy (pp);
1445
  //png_write_destroy (pp);
1446
  png_destroy_write_struct(&pp, &info);
1445
1447
1446
  g_free (pixel);
1448
  g_free (pixel);
1447
  g_free (pixels);
1449
  g_free (pixels);

Return to bug 87553