mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
[libpng15] Removed references to png_zalloc() and png_zfree() from
the manual. They have not been exported to applications since libpng12.
This commit is contained in:
parent
77c1d30d14
commit
08c3a838a3
5
ANNOUNCE
5
ANNOUNCE
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
Libpng 1.5.13beta01 - July 14, 2012
|
Libpng 1.5.13beta01 - August 3, 2012
|
||||||
|
|
||||||
This is not intended to be a public release. It will be replaced
|
This is not intended to be a public release. It will be replaced
|
||||||
within a few weeks by a public version or by another test version.
|
within a few weeks by a public version or by another test version.
|
||||||
@ -26,8 +26,9 @@ Other information:
|
|||||||
|
|
||||||
Changes since the last public release (1.5.12):
|
Changes since the last public release (1.5.12):
|
||||||
|
|
||||||
Version 1.5.13beta01 [July 14, 2012]
|
Version 1.5.13beta01 [August 3, 2012]
|
||||||
Do not compile PNG_DEPRECATED, PNG_ALLOC and PNG_PRIVATE when __GNUC__ < 3.
|
Do not compile PNG_DEPRECATED, PNG_ALLOC and PNG_PRIVATE when __GNUC__ < 3.
|
||||||
|
Removed references to png_zalloc() and png_zfree() from the manual.
|
||||||
|
|
||||||
Send comments/corrections/commendations to png-mng-implement at lists.sf.net:
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net:
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
|||||||
3
CHANGES
3
CHANGES
@ -3896,8 +3896,9 @@ Version 1.5.12 [July 11, 2012]
|
|||||||
depends on configure, which is not included in those archives.
|
depends on configure, which is not included in those archives.
|
||||||
Changed "a+w" to "u+w" in Makefile.in to fix CVE-2012-3386.
|
Changed "a+w" to "u+w" in Makefile.in to fix CVE-2012-3386.
|
||||||
|
|
||||||
Version 1.5.13beta01 [July 28, 2012]
|
Version 1.5.13beta01 [August 3, 2012]
|
||||||
Do not compile PNG_DEPRECATED, PNG_ALLOC and PNG_PRIVATE when __GNUC__ < 3.
|
Do not compile PNG_DEPRECATED, PNG_ALLOC and PNG_PRIVATE when __GNUC__ < 3.
|
||||||
|
Removed references to png_zalloc() and png_zfree() from the manual.
|
||||||
|
|
||||||
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
Send comments/corrections/commendations to png-mng-implement at lists.sf.net
|
||||||
(subscription required; visit
|
(subscription required; visit
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
Libpng-manual.txt - A description on how to use and modify libpng
|
Libpng-manual.txt - A description on how to use and modify libpng
|
||||||
|
|
||||||
libpng version 1.5.13beta01 - July 14, 2012
|
libpng version 1.5.13beta01 - August 3, 2012
|
||||||
Updated and distributed by Glenn Randers-Pehrson
|
Updated and distributed by Glenn Randers-Pehrson
|
||||||
<glennrp at users.sourceforge.net>
|
<glennrp at users.sourceforge.net>
|
||||||
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
||||||
@ -11,7 +11,7 @@ Libpng-manual.txt - A description on how to use and modify libpng
|
|||||||
|
|
||||||
Based on:
|
Based on:
|
||||||
|
|
||||||
libpng versions 0.97, January 1998, through 1.5.13beta01 - July 14, 2012
|
libpng versions 0.97, January 1998, through 1.5.13beta01 - August 3, 2012
|
||||||
Updated and distributed by Glenn Randers-Pehrson
|
Updated and distributed by Glenn Randers-Pehrson
|
||||||
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
||||||
|
|
||||||
@ -2189,7 +2189,7 @@ sPLT, only the n'th item in the structure is freed, where n is "seq".
|
|||||||
The default behavior is only to free data that was allocated internally
|
The default behavior is only to free data that was allocated internally
|
||||||
by libpng. This can be changed, so that libpng will not free the data,
|
by libpng. This can be changed, so that libpng will not free the data,
|
||||||
or so that it will free data that was allocated by the user with png_malloc()
|
or so that it will free data that was allocated by the user with png_malloc()
|
||||||
or png_zalloc() and passed in via a png_set_*() function, with
|
and passed in via a png_set_*() function, with
|
||||||
|
|
||||||
png_data_freer(png_ptr, info_ptr, freer, mask)
|
png_data_freer(png_ptr, info_ptr, freer, mask)
|
||||||
|
|
||||||
@ -2210,7 +2210,7 @@ or png_destroy_*() is supposed to free the data. When the user assumes
|
|||||||
responsibility for libpng-allocated data, the application must use
|
responsibility for libpng-allocated data, the application must use
|
||||||
png_free() to free it, and when the user transfers responsibility to libpng
|
png_free() to free it, and when the user transfers responsibility to libpng
|
||||||
for data that the user has allocated, the user must have used png_malloc()
|
for data that the user has allocated, the user must have used png_malloc()
|
||||||
or png_zalloc() to allocate it.
|
to allocate it.
|
||||||
|
|
||||||
If you allocated your row_pointers in a single block, as suggested above in
|
If you allocated your row_pointers in a single block, as suggested above in
|
||||||
the description of the high level read interface, you must not transfer
|
the description of the high level read interface, you must not transfer
|
||||||
@ -3391,7 +3391,7 @@ png_destroy_write_struct().
|
|||||||
The default behavior is only to free data that was allocated internally
|
The default behavior is only to free data that was allocated internally
|
||||||
by libpng. This can be changed, so that libpng will not free the data,
|
by libpng. This can be changed, so that libpng will not free the data,
|
||||||
or so that it will free data that was allocated by the user with png_malloc()
|
or so that it will free data that was allocated by the user with png_malloc()
|
||||||
or png_zalloc() and passed in via a png_set_*() function, with
|
and passed in via a png_set_*() function, with
|
||||||
|
|
||||||
png_data_freer(png_ptr, info_ptr, freer, mask)
|
png_data_freer(png_ptr, info_ptr, freer, mask)
|
||||||
|
|
||||||
@ -3427,7 +3427,7 @@ When the user assumes responsibility for libpng-allocated data, the
|
|||||||
application must use
|
application must use
|
||||||
png_free() to free it, and when the user transfers responsibility to libpng
|
png_free() to free it, and when the user transfers responsibility to libpng
|
||||||
for data that the user has allocated, the user must have used png_malloc()
|
for data that the user has allocated, the user must have used png_malloc()
|
||||||
or png_zalloc() to allocate it.
|
to allocate it.
|
||||||
|
|
||||||
If you allocated text_ptr.text, text_ptr.lang, and text_ptr.translated_keyword
|
If you allocated text_ptr.text, text_ptr.lang, and text_ptr.translated_keyword
|
||||||
separately, do not transfer responsibility for freeing text_ptr to libpng,
|
separately, do not transfer responsibility for freeing text_ptr to libpng,
|
||||||
@ -4602,7 +4602,7 @@ Other rules can be inferred by inspecting the libpng source.
|
|||||||
|
|
||||||
XIV. Y2K Compliance in libpng
|
XIV. Y2K Compliance in libpng
|
||||||
|
|
||||||
July 14, 2012
|
August 3, 2012
|
||||||
|
|
||||||
Since the PNG Development group is an ad-hoc body, we can't make
|
Since the PNG Development group is an ad-hoc body, we can't make
|
||||||
an official declaration.
|
an official declaration.
|
||||||
|
|||||||
30
libpng.3
30
libpng.3
@ -1,4 +1,4 @@
|
|||||||
.TH LIBPNG 3 "July 14, 2012"
|
.TH LIBPNG 3 "August 3, 2012"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
libpng \- Portable Network Graphics (PNG) Reference Library 1.5.13beta01
|
libpng \- Portable Network Graphics (PNG) Reference Library 1.5.13beta01
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
@ -962,14 +962,6 @@ libpng \- Portable Network Graphics (PNG) Reference Library 1.5.13beta01
|
|||||||
|
|
||||||
\fI\fB
|
\fI\fB
|
||||||
|
|
||||||
\fBvoidpf png_zalloc (voidpf \fP\fIpng_ptr\fP\fB, uInt \fP\fIitems\fP\fB, uInt \fIsize\fP\fB);\fP
|
|
||||||
|
|
||||||
\fI\fB
|
|
||||||
|
|
||||||
\fBvoid png_zfree (voidpf \fP\fIpng_ptr\fP\fB, voidpf \fIptr\fP\fB);\fP
|
|
||||||
|
|
||||||
\fI\fB
|
|
||||||
|
|
||||||
.SH DESCRIPTION
|
.SH DESCRIPTION
|
||||||
The
|
The
|
||||||
.I libpng
|
.I libpng
|
||||||
@ -981,7 +973,7 @@ Following is a copy of the libpng-manual.txt file that accompanies libpng.
|
|||||||
.SH LIBPNG.TXT
|
.SH LIBPNG.TXT
|
||||||
Libpng-manual.txt - A description on how to use and modify libpng
|
Libpng-manual.txt - A description on how to use and modify libpng
|
||||||
|
|
||||||
libpng version 1.5.13beta01 - July 14, 2012
|
libpng version 1.5.13beta01 - August 3, 2012
|
||||||
Updated and distributed by Glenn Randers-Pehrson
|
Updated and distributed by Glenn Randers-Pehrson
|
||||||
<glennrp at users.sourceforge.net>
|
<glennrp at users.sourceforge.net>
|
||||||
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
||||||
@ -992,7 +984,7 @@ Libpng-manual.txt - A description on how to use and modify libpng
|
|||||||
|
|
||||||
Based on:
|
Based on:
|
||||||
|
|
||||||
libpng versions 0.97, January 1998, through 1.5.13beta01 - July 14, 2012
|
libpng versions 0.97, January 1998, through 1.5.13beta01 - August 3, 2012
|
||||||
Updated and distributed by Glenn Randers-Pehrson
|
Updated and distributed by Glenn Randers-Pehrson
|
||||||
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
Copyright (c) 1998-2011 Glenn Randers-Pehrson
|
||||||
|
|
||||||
@ -3170,7 +3162,7 @@ sPLT, only the n'th item in the structure is freed, where n is "seq".
|
|||||||
The default behavior is only to free data that was allocated internally
|
The default behavior is only to free data that was allocated internally
|
||||||
by libpng. This can be changed, so that libpng will not free the data,
|
by libpng. This can be changed, so that libpng will not free the data,
|
||||||
or so that it will free data that was allocated by the user with png_malloc()
|
or so that it will free data that was allocated by the user with png_malloc()
|
||||||
or png_zalloc() and passed in via a png_set_*() function, with
|
and passed in via a png_set_*() function, with
|
||||||
|
|
||||||
png_data_freer(png_ptr, info_ptr, freer, mask)
|
png_data_freer(png_ptr, info_ptr, freer, mask)
|
||||||
|
|
||||||
@ -3191,7 +3183,7 @@ or png_destroy_*() is supposed to free the data. When the user assumes
|
|||||||
responsibility for libpng-allocated data, the application must use
|
responsibility for libpng-allocated data, the application must use
|
||||||
png_free() to free it, and when the user transfers responsibility to libpng
|
png_free() to free it, and when the user transfers responsibility to libpng
|
||||||
for data that the user has allocated, the user must have used png_malloc()
|
for data that the user has allocated, the user must have used png_malloc()
|
||||||
or png_zalloc() to allocate it.
|
to allocate it.
|
||||||
|
|
||||||
If you allocated your row_pointers in a single block, as suggested above in
|
If you allocated your row_pointers in a single block, as suggested above in
|
||||||
the description of the high level read interface, you must not transfer
|
the description of the high level read interface, you must not transfer
|
||||||
@ -4372,7 +4364,7 @@ png_destroy_write_struct().
|
|||||||
The default behavior is only to free data that was allocated internally
|
The default behavior is only to free data that was allocated internally
|
||||||
by libpng. This can be changed, so that libpng will not free the data,
|
by libpng. This can be changed, so that libpng will not free the data,
|
||||||
or so that it will free data that was allocated by the user with png_malloc()
|
or so that it will free data that was allocated by the user with png_malloc()
|
||||||
or png_zalloc() and passed in via a png_set_*() function, with
|
and passed in via a png_set_*() function, with
|
||||||
|
|
||||||
png_data_freer(png_ptr, info_ptr, freer, mask)
|
png_data_freer(png_ptr, info_ptr, freer, mask)
|
||||||
|
|
||||||
@ -4408,7 +4400,7 @@ When the user assumes responsibility for libpng-allocated data, the
|
|||||||
application must use
|
application must use
|
||||||
png_free() to free it, and when the user transfers responsibility to libpng
|
png_free() to free it, and when the user transfers responsibility to libpng
|
||||||
for data that the user has allocated, the user must have used png_malloc()
|
for data that the user has allocated, the user must have used png_malloc()
|
||||||
or png_zalloc() to allocate it.
|
to allocate it.
|
||||||
|
|
||||||
If you allocated text_ptr.text, text_ptr.lang, and text_ptr.translated_keyword
|
If you allocated text_ptr.text, text_ptr.lang, and text_ptr.translated_keyword
|
||||||
separately, do not transfer responsibility for freeing text_ptr to libpng,
|
separately, do not transfer responsibility for freeing text_ptr to libpng,
|
||||||
@ -5584,7 +5576,7 @@ Other rules can be inferred by inspecting the libpng source.
|
|||||||
|
|
||||||
.SH XIV. Y2K Compliance in libpng
|
.SH XIV. Y2K Compliance in libpng
|
||||||
|
|
||||||
July 14, 2012
|
August 3, 2012
|
||||||
|
|
||||||
Since the PNG Development group is an ad-hoc body, we can't make
|
Since the PNG Development group is an ad-hoc body, we can't make
|
||||||
an official declaration.
|
an official declaration.
|
||||||
@ -5864,7 +5856,7 @@ possible without all of you.
|
|||||||
|
|
||||||
Thanks to Frank J. T. Wojcik for helping with the documentation.
|
Thanks to Frank J. T. Wojcik for helping with the documentation.
|
||||||
|
|
||||||
Libpng version 1.5.13beta01 - July 14, 2012:
|
Libpng version 1.5.13beta01 - August 3, 2012:
|
||||||
Initially created in 1995 by Guy Eric Schalnat, then of Group 42, Inc.
|
Initially created in 1995 by Guy Eric Schalnat, then of Group 42, Inc.
|
||||||
Currently maintained by Glenn Randers-Pehrson (glennrp at users.sourceforge.net).
|
Currently maintained by Glenn Randers-Pehrson (glennrp at users.sourceforge.net).
|
||||||
|
|
||||||
@ -5887,7 +5879,7 @@ this sentence.
|
|||||||
|
|
||||||
This code is released under the libpng license.
|
This code is released under the libpng license.
|
||||||
|
|
||||||
libpng versions 1.2.6, August 15, 2004, through 1.5.13beta01, July 14, 2012, are
|
libpng versions 1.2.6, August 15, 2004, through 1.5.13beta01, August 3, 2012, are
|
||||||
Copyright (c) 2004,2006-2007 Glenn Randers-Pehrson, and are
|
Copyright (c) 2004,2006-2007 Glenn Randers-Pehrson, and are
|
||||||
distributed according to the same disclaimer and license as libpng-1.2.5
|
distributed according to the same disclaimer and license as libpng-1.2.5
|
||||||
with the following individual added to the list of Contributing Authors
|
with the following individual added to the list of Contributing Authors
|
||||||
@ -5986,7 +5978,7 @@ certification mark of the Open Source Initiative.
|
|||||||
|
|
||||||
Glenn Randers-Pehrson
|
Glenn Randers-Pehrson
|
||||||
glennrp at users.sourceforge.net
|
glennrp at users.sourceforge.net
|
||||||
July 14, 2012
|
August 3, 2012
|
||||||
|
|
||||||
.\" end of man page
|
.\" end of man page
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user