Imported from libpng-1.0.5h.tar
diff --git a/example.c b/example.c
index 4304504..50a285f 100644
--- a/example.c
+++ b/example.c
@@ -595,6 +595,11 @@
text_ptr[2].key = "Description";
text_ptr[2].text = "<long text>";
text_ptr[2].compression = PNG_TEXT_COMPRESSION_zTXt;
+#ifdef PNG_iTXt_SUPPORTED
+ text_ptr[0].lang = NULL;
+ text_ptr[1].lang = NULL;
+ text_ptr[2].lang = NULL;
+#endif
png_set_text(png_ptr, info_ptr, text_ptr, 3);
/* other optional chunks like cHRM, bKGD, tRNS, tIME, oFFs, pHYs, */
@@ -699,8 +704,6 @@
/* if you malloced the palette, free it here */
free(info_ptr->palette);
- /* if you allocated any text comments, free them here */
-
/* clean up after the write, and free any memory allocated */
png_destroy_write_struct(&png_ptr, (png_infopp)NULL);