History log of /PHP-5.4/NEWS (Results 251 – 275 of 6633)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# bb51d0e4 19-Dec-2013 Boris Lytochkin

Fixed SNMP_ERR_TOOBIG handling for bulk walk operations


# 20eb8e4d 19-Dec-2013 Remi Collet

Fixed Bug #66321 (ZipArchive::open() ze_obj->filename_len not real)


# cbcf6e18 08-Dec-2013 Stanislav Malyshev

Fix bug #65873 - Integer overflow in exif_read_data()


# 8650bbc8 10-Dec-2013 Stanislav Malyshev

5.3.29-dev


# c1224573 08-Dec-2013 Stanislav Malyshev

Fix CVE-2013-6420 - memory corruption in openssl_x509_parse


# a0955f35 08-Dec-2013 Adam Harvey

Switch to using freetype-config for freetype detection.

This fixes GD compilation against libfreetype 2.5.1 and later after they made
the rather interesting decision to change their incl

Switch to using freetype-config for freetype detection.

This fixes GD compilation against libfreetype 2.5.1 and later after they made
the rather interesting decision to change their include directory layout in a
point release.

The original suggestion in the bug was to use pkg-config, but my inclination is
to use freetype-config instead: we should be able to get the same configuration
information without actually needing pkg-config installed, since pkg-config is
by no means guaranteed to exist on many Unices and distros, whereas
freetype-config should always be present if a libfreetype build environment is
installed. Let's try it out and see what happens.

Fixes bug #64405 (Use freetype-config for determining freetype2 dir(s)).

show more ...


# 3e963f8e 10-Dec-2013 Remi Collet

Fixed Bug #66218 zend_register_functions breaks reflection

Functions registered using zend_register_functions instead of zend_module_entry.functions are not seen on reflection.

Ex:

Fixed Bug #66218 zend_register_functions breaks reflection

Functions registered using zend_register_functions instead of zend_module_entry.functions are not seen on reflection.

Ex: additional_functions from api_module_entry.
Ex: in CLI, dl, cli_set_process_title and cli_get_process_title

Note:
- also affects functions overrided in extension
(should be be reported in extension, where overrided, not in original extension)
- also allow extension to call zend_register_functions for various list
(instead of having a single bug list)

show more ...


# c062c18d 04-Oct-2013 Lior Kaplan

Replace invalid code with a proper #error

This code creates a nasty error as mentioned in bugs #31131, #37062
Patch taken from Debian's PHP package: 044-strtod_arm_fix


# b5f5bff9 06-Dec-2013 Michael Wallner

Fixed bug #61645 (fopen and O_NONBLOCK)

if a mode like "rn" was passed to fopen(), then
php_stream_parse_fopen_modes() would assign O_WRONLY to
flags, because O_NONBLOCK tainted flag

Fixed bug #61645 (fopen and O_NONBLOCK)

if a mode like "rn" was passed to fopen(), then
php_stream_parse_fopen_modes() would assign O_WRONLY to
flags, because O_NONBLOCK tainted flags for the r/w/+ check

show more ...


# d1314893 03-Dec-2013 Adam Harvey

Remove 128.0.0.0/16 and 191.255.0.0/16 from the reserved list.

These were returned to the general allocation pool by RFC 3330, and hence
shouldn't cause an IP address validation failure

Remove 128.0.0.0/16 and 191.255.0.0/16 from the reserved list.

These were returned to the general allocation pool by RFC 3330, and hence
shouldn't cause an IP address validation failure due to being reserved. At
least 128.0.0.0/16 is in use on the public Internet today.

Fixes bug #66229 (128.0.0.0/16 isn't reserved any longer).

show more ...


# 22fa3fbc 02-Dec-2013 Michael Wallner

Fix bug #65196

Passing DOMDocumentFragment to DOMDocument::saveHTML()
produces invalid markup, because a DocumentFragment is just a container
for child nodes and not a real node itse

Fix bug #65196

Passing DOMDocumentFragment to DOMDocument::saveHTML()
produces invalid markup, because a DocumentFragment is just a container
for child nodes and not a real node itself.

show more ...


# 6408a1a5 02-Dec-2013 Michael Wallner

fix bug #49634x


# 2d31eadb 29-Nov-2013 Dmitry Stogov

Added validation of class names in the autoload process


# d22cc5c8 28-Nov-2013 Derick Rethans

Fixed bug #65199 (Wrong Day of Week) and fixed bug #63391 (Incorrect/inconsistent day of week prior to the year 1600)


# 16d59aa1 27-Nov-2013 Dmitry Stogov

Fixed bug #65969 (Chain assignment with T_LIST failure)


# 12fe4e90 27-Nov-2013 Remi Collet

Fixed bug #66060 (Heap buffer over-read in DateInterval)


# 63f3ff7b 27-Nov-2013 Stanislav Malyshev

5.4.24-dev now


# 74ba88e1 26-Nov-2013 Andrey Hristov

Fix for Bug #66141 (mysqlnd quote function is wrong with NO_BACKSLASH_ESCAPES after failed query)


# 1b0e6067 25-Nov-2013 Andrey Hristov

bring the news


# 823e330c 17-Nov-2013 Xinchen Hui

Fixed Bug #66094 (unregister_tick_function tries to cast a Closure to a string)


# c9cfd98b 10-Nov-2013 Adam Harvey

Update NEWS and remove the unnecessary UPGRADING note.


# cf2626f1 08-Nov-2013 Xinchen Hui

Fixed bug #65947 (basename is no more working after fgetcsv in certain situation)

previous codes: "#define php_mblen(ptr, len) ((ptr) == NULL ? mbsinit(&BG(mblen_state)):
(int)mbrlen(ptr

Fixed bug #65947 (basename is no more working after fgetcsv in certain situation)

previous codes: "#define php_mblen(ptr, len) ((ptr) == NULL ? mbsinit(&BG(mblen_state)):
(int)mbrlen(ptr, len, &BG(mblen_state)))#

it use mbsinit there, seems try to initialize the mblen_state, but:
"This function does not change the state identified by ps. Typical ways
to make the state pointed by ps an initial state are:

memset (ps,0,sizeof(*ps)); // ps points to zero-valued object
"
http://www.cplusplus.com/reference/cwchar/mbsinit/?kw=mbsinit

show more ...


# fd3fa9b5 08-Nov-2013 Xinchen Hui

Fixed Bug #66043 (Segfault calling bind_param() on mysqli)

Although the doc said it is (unsigned int *), but it is ulong* in the
libmysql 5.0 's source codes


# 224dc52e 08-Nov-2013 Rasmus Lerdorf

NEWS entry


# e3d9e18e 05-Nov-2013 Xinchen Hui

Fixed Bug #66034 (Segmentation Fault when constructor of PDO statement throws an exception)

I know zend_call_function will initilize retval_ptr_ptr, but still set
it to NULL explict is m

Fixed Bug #66034 (Segmentation Fault when constructor of PDO statement throws an exception)

I know zend_call_function will initilize retval_ptr_ptr, but still set
it to NULL explict is more readable

show more ...


1...<<11121314151617181920>>...266