History log of /PHP-5.3/ (Results 76 – 100 of 46464)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
4cb25d2522-May-2013 Johannes Schlüter

This will be PHP 5.3.27

c50cef1d22-May-2013 Remi Collet

Fixed bug #64895 Integer overflow in SndToJewish

d4ad889822-May-2013 Stanislav Malyshev

fix order

2d5695cb19-May-2013 Sara Golemon

Don't double-quote name of namespaced function.

ZEND_NS_NAMED_FE(ns, zend_name, name, arg_info)

was resulting in a function declaration of:

ns\"zend_name"()

includ

Don't double-quote name of namespaced function.

ZEND_NS_NAMED_FE(ns, zend_name, name, arg_info)

was resulting in a function declaration of:

ns\"zend_name"()

including the errant quotes.

This diff corrects that. There are currently no uses of ZEND_NS_NAMED_FE
in core and reason to believe that there are no uses in the wild either.

show more ...

4828f73421-May-2013 Remi Collet

Integer overflow in SndToJewish leads to php hang
AT least in (inputDay is long, metonicCycle is int):
metonicCycle = (inputDay + 310) / 6940;

So large value give strange (negativ

Integer overflow in SndToJewish leads to php hang
AT least in (inputDay is long, metonicCycle is int):
metonicCycle = (inputDay + 310) / 6940;

So large value give strange (negative) results or php hangs.
This is patch already applied in some linux distro.

show more ...

46b05bc517-May-2013 Pierre Joye

entry for #64214

3eb1745617-May-2013 Pierre Joye

other fix for #64214, unmodified file may not have old fp set, causing other possible crashes

86db5fb415-May-2013 Anatol Belski

Fix unitialized vars when sql.safe_mode=1

which can break the subsequent mysqlnd_connect() call

ba1af29814-May-2013 Pierre Joye

more check for php_stream_fopen_tmpfile failure

533e636a14-May-2013 Pierre Joye

php_stream_fopen_tmpfile may file, causing any following stream usage to crash

fe21accf13-May-2013 Anatol Belski

fix heap overflow warnings on win x64 debug crt

d6505acb12-May-2013 Anatol Belski

Fixed bug #64821 Custom Exceptions crash when internal properties overridden

If user inherits Exception and overrides the properties to arbitrary data types,
or simply doesn't run parent

Fixed bug #64821 Custom Exceptions crash when internal properties overridden

If user inherits Exception and overrides the properties to arbitrary data types,
or simply doesn't run parent::__construct(), here we go. Just convert everything
to the appropriate data type, like Exception::__toString() does.

show more ...

1cc2162b08-May-2013 Johannes Schlüter

PHP 5.3.25 NEWS

5c701d1904-May-2013 Anatol Belski

better fix for bug #64770

b1ea0b7a03-May-2013 Anatol Belski

Fixed bug #64770 stream_select() fails with pipes

returned by proc_open() on Windows x64

4a34d4a803-May-2013 Remi Collet

NEWS

0549e55d03-May-2013 Remi Collet

From code coverity scan, syscall return value must be check.

To not alter current behaviour, we simply log the problem,
so, if it occurs, the message will give explanation.

This

From code coverity scan, syscall return value must be check.

To not alter current behaviour, we simply log the problem,
so, if it occurs, the message will give explanation.

This are only warning as they don't block the server,
but such fail can explain strange (not expected) behaviour later.

show more ...

444e59eb02-May-2013 Remi Collet

fix more resource leaks

331540d202-May-2013 Remi Collet

From code coverity scan
- fix some memory leak
- fix some resources leak (fd)
- create fpm_worker_pool_free (shared use)
- possible null dref (wp->user and wp->home can be null)

d0c4022002-May-2013 Remi Collet

fixed size array cannot be null

8492bbef02-May-2013 Remi Collet

use limit_extensions as we use security_limit_extensions later (free)

a7d6cb2302-May-2013 Remi Collet

unused variable

ab11757302-May-2013 Remi Collet

fix possible null deref (detected by code coverity scan)

15b554cd27-Apr-2013 Xinchen Hui

Also fixed bug #64726 in 5.3

c7b8368e27-Apr-2013 Xinchen Hui

Fix memory realted to #64726

12345678910>>...1859