[libpng16] Removed unused "current_text" members of png_struct

and the png_free() of png_ptr->current_text from pngread.c
This commit is contained in:
Glenn Randers-Pehrson 2012-02-27 08:09:42 -06:00
parent b7e32059d3
commit 5408b613f8
3 changed files with 4 additions and 6 deletions

View File

@ -235,6 +235,8 @@ Version 1.6.0beta14 [February 27, 2012]
Updated Makefile.in
Version 1.6.0beta15 [February 27, 2012]
Removed unused "current_text" members of png_struct and the png_free()
of png_ptr->current_text from pngread.c
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit

View File

@ -3987,6 +3987,8 @@ Version 1.6.0beta14 [February 27, 2012]
Updated Makefile.in
Version 1.6.0beta15 [February 27, 2012]
Removed unused "current_text" members of png_struct and the png_free()
of png_ptr->current_text from pngread.c
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
(subscription required; visit

View File

@ -911,12 +911,6 @@ png_read_destroy(png_structrp png_ptr)
png_free(png_ptr, png_ptr->save_buffer);
#endif
#ifdef PNG_PROGRESSIVE_READ_SUPPORTED
#ifdef PNG_TEXT_SUPPORTED
png_free(png_ptr, png_ptr->current_text);
#endif /* PNG_TEXT_SUPPORTED */
#endif /* PNG_PROGRESSIVE_READ_SUPPORTED */
#ifdef PNG_UNKNOWN_CHUNKS_SUPPORTED
png_free(png_ptr, png_ptr->unknown_chunk.data);
#endif