]> granicus.if.org Git - php/log
php
11 years agoMerge branch 'PHP-5.5'
Anatol Belski [Sun, 12 May 2013 19:30:21 +0000 (21:30 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  Fixed bug #64825 Invalid free unserializing DateTimeZone

11 years agoFixed bug #64825 Invalid free unserializing DateTimeZone
Anatol Belski [Sun, 12 May 2013 19:29:16 +0000 (21:29 +0200)]
Fixed bug #64825 Invalid free unserializing DateTimeZone

11 years agoMerge branch 'PHP-5.5'
Anatol Belski [Sun, 12 May 2013 12:10:24 +0000 (14:10 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  updated NEWS
  updated NEWS
  Fixed bug #64821 Custom Exceptions crash when internal properties overridden

11 years agoupdated NEWS
Anatol Belski [Sun, 12 May 2013 12:09:59 +0000 (14:09 +0200)]
updated NEWS

11 years agoMerge branch 'PHP-5.4' into PHP-5.5
Anatol Belski [Sun, 12 May 2013 12:09:16 +0000 (14:09 +0200)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  updated NEWS
  Fixed bug #64821 Custom Exceptions crash when internal properties overridden

11 years agoupdated NEWS
Anatol Belski [Sun, 12 May 2013 12:08:42 +0000 (14:08 +0200)]
updated NEWS

11 years agoMerge branch 'PHP-5.3' into PHP-5.4
Anatol Belski [Sun, 12 May 2013 12:06:59 +0000 (14:06 +0200)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Fixed bug #64821 Custom Exceptions crash when internal properties overridden

11 years agoFixed bug #64821 Custom Exceptions crash when internal properties overridden
Anatol Belski [Sun, 12 May 2013 12:00:32 +0000 (14:00 +0200)]
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.

11 years agoMerge branch 'PHP-5.5'
Anatol Belski [Sat, 11 May 2013 00:48:24 +0000 (02:48 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  fixed variable corruption under win x64

11 years agofixed variable corruption under win x64
Anatol Belski [Sat, 11 May 2013 00:47:48 +0000 (02:47 +0200)]
fixed variable corruption under win x64

11 years agoMerge branch 'PHP-5.4' into PHP-5.5
Xinchen Hui [Thu, 9 May 2013 07:57:44 +0000 (15:57 +0800)]
Merge branch 'PHP-5.4' into PHP-5.5

11 years agoMissed SKIPIF
Xinchen Hui [Thu, 9 May 2013 07:57:25 +0000 (15:57 +0800)]
Missed SKIPIF

11 years agoFix NEWS (wrong bug # AND wrong section...)
Gustavo Lopes [Wed, 8 May 2013 18:03:43 +0000 (20:03 +0200)]
Fix NEWS (wrong bug # AND wrong section...)

It's bug #64508, not #64506.

11 years agoFix bug #64506: fix build with --disable-ipv6
Gustavo Lopes [Wed, 8 May 2013 17:51:39 +0000 (19:51 +0200)]
Fix bug #64506: fix build with --disable-ipv6

11 years agoFixed news, rc1 is already branched
Anatol Belski [Wed, 8 May 2013 17:24:51 +0000 (19:24 +0200)]
Fixed news, rc1 is already branched

11 years agoFixed bug #64769 mbstring PHPTs crash on Windows x64
Anatol Belski [Wed, 8 May 2013 16:58:32 +0000 (18:58 +0200)]
Fixed bug #64769 mbstring PHPTs crash on Windows x64

The tricky business going there in oniguruma is saving a pointer
in an int variable, passing that variable into a function and making
it a pointer again. On 64bit windows casting a pointer to a 32 bit
int will truncate that pointer. This kind of things won't work on
Windows x64.

[SNIPPET]
unsigned long ul0[2], ul1, *ul2;

ul0[0] = 42uL;
ul0[0] = 24uL;

ul1 = (unsigned long)ul0;
ul2 = (unsigned long *)ul1;

/* now it's broken, accessing ul2[0] will crash. */
[/SNIPPET]

To make it portable, ULONG_PTR should be used in this case.

In oniguruma this behaviour is to see at least in the following
codepath:

ext/mbstring/oniguruma/enc/unicode.c:10938
ext/mbstring/oniguruma/st.c:308
ext/mbstring/oniguruma/enc/unicode.c:10859

11 years agoNews for RC2
David Soria Parra [Wed, 8 May 2013 16:57:06 +0000 (18:57 +0200)]
News for RC2

11 years agoNEWS for RC1
David Soria Parra [Wed, 8 May 2013 16:44:05 +0000 (18:44 +0200)]
NEWS for RC1

11 years agoMerge branch 'PHP-5.4' into PHP-5.5
Johannes Schlüter [Wed, 8 May 2013 16:03:12 +0000 (18:03 +0200)]
Merge branch 'PHP-5.4' into PHP-5.5

11 years agoMerge branch 'PHP-5.3' into PHP-5.4
Johannes Schlüter [Wed, 8 May 2013 16:02:35 +0000 (18:02 +0200)]
Merge branch 'PHP-5.3' into PHP-5.4

11 years agoPHP 5.3.25 NEWS
Johannes Schlüter [Wed, 8 May 2013 16:01:39 +0000 (18:01 +0200)]
PHP 5.3.25 NEWS

11 years agoFixed bug #64785 : restore 5.4 behaviour, libpng is mandatory
Remi Collet [Wed, 8 May 2013 05:37:40 +0000 (07:37 +0200)]
Fixed bug #64785 : restore 5.4 behaviour, libpng is mandatory

11 years agoFix #64780 (PHP 5.5 builds are broken with GCC 3)
Ard Biesheuvel [Tue, 7 May 2013 18:37:04 +0000 (20:37 +0200)]
Fix #64780 (PHP 5.5 builds are broken with GCC 3)

A recent change (by me) introduced a call to __builtin_offsetof()
into zend_operators.h which is not defined by GCC prior to
version 4.

Changed the code to use offsetof() instead: this is defined in
<stddef.h>, so #include this header conditionally (#ifdef GNUC)

11 years agoFix for challenge string length pointed out by Kalle Nielsen
jas- [Tue, 7 May 2013 00:43:13 +0000 (18:43 -0600)]
Fix for challenge string length pointed out by Kalle Nielsen

11 years agoAddress feature request #38917 for native SPKAC (HTML5 keygen element) support
jas- [Mon, 6 May 2013 22:36:06 +0000 (16:36 -0600)]
Address feature request #38917 for native SPKAC (HTML5 keygen element) support

11 years agoMerge branch 'PHP-5.5'
Xinchen Hui [Thu, 9 May 2013 07:57:56 +0000 (15:57 +0800)]
Merge branch 'PHP-5.5'

11 years agoMerge branch 'PHP-5.5'
Gustavo Lopes [Wed, 8 May 2013 17:58:43 +0000 (19:58 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  Fix bug #64506: fix build with --disable-ipv6

11 years agoMerge branch 'PHP-5.5'
Gustavo Lopes [Wed, 8 May 2013 17:57:23 +0000 (19:57 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  Fix bug #64506: fix build with --disable-ipv6

11 years agoFix bug #64506: fix build with --disable-ipv6
Gustavo Lopes [Wed, 8 May 2013 17:51:39 +0000 (19:51 +0200)]
Fix bug #64506: fix build with --disable-ipv6

11 years agoMerge branch 'PHP-5.5'
Anatol Belski [Wed, 8 May 2013 17:26:04 +0000 (19:26 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  Fixed news, rc1 is already branched
  Fixed bug #64769 mbstring PHPTs crash on Windows x64

11 years agoMerge branch 'master' of git.php.net:php-src
Anatol Belski [Wed, 8 May 2013 17:19:24 +0000 (19:19 +0200)]
Merge branch 'master' of git.php.net:php-src

11 years agoMerge branch 'PHP-5.5'
Anatol Belski [Wed, 8 May 2013 17:18:00 +0000 (19:18 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  Fixed bug #64769 mbstring PHPTs crash on Windows x64

11 years agoFixed bug #64769 mbstring PHPTs crash on Windows x64
Anatol Belski [Wed, 8 May 2013 16:58:32 +0000 (18:58 +0200)]
Fixed bug #64769 mbstring PHPTs crash on Windows x64

The tricky business going there in oniguruma is saving a pointer
in an int variable, passing that variable into a function and making
it a pointer again. On 64bit windows casting a pointer to a 32 bit
int will truncate that pointer. This kind of things won't work on
Windows x64.

[SNIPPET]
unsigned long ul0[2], ul1, *ul2;

ul0[0] = 42uL;
ul0[0] = 24uL;

ul1 = (unsigned long)ul0;
ul2 = (unsigned long *)ul1;

/* now it's broken, accessing ul2[0] will crash. */
[/SNIPPET]

To make it portable, ULONG_PTR should be used in this case.

In oniguruma this behaviour is to see at least in the following
codepath:

ext/mbstring/oniguruma/enc/unicode.c:10938
ext/mbstring/oniguruma/st.c:308
ext/mbstring/oniguruma/enc/unicode.c:10859

11 years agoMerge branch 'PHP-5.5'
David Soria Parra [Wed, 8 May 2013 16:57:23 +0000 (18:57 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  News for RC2
  NEWS for RC1

11 years agoMerge branch 'PHP-5.5'
Johannes Schlüter [Wed, 8 May 2013 16:03:53 +0000 (18:03 +0200)]
Merge branch 'PHP-5.5'

11 years agoMerge branch 'PHP-5.5'
Remi Collet [Wed, 8 May 2013 05:37:46 +0000 (07:37 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  Fixed bug #64785 : restore 5.4 behaviour, libpng is mandatory

11 years agoMerge branch 'PHP-5.5'
Ard Biesheuvel [Tue, 7 May 2013 20:08:24 +0000 (22:08 +0200)]
Merge branch 'PHP-5.5'

11 years agoMerge branch 'PHP-5.5'
Remi Collet [Mon, 6 May 2013 08:25:41 +0000 (10:25 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  gd: fix 2 failed tests (bundled lib) due to arithmetic precision (allow minor diff).

11 years agogd: fix 2 failed tests (bundled lib) due to arithmetic precision (allow minor diff).
Remi Collet [Mon, 6 May 2013 08:25:36 +0000 (10:25 +0200)]
gd: fix 2 failed tests (bundled lib) due to arithmetic precision (allow minor diff).

11 years agoMerge branch 'PHP-5.5'
Remi Collet [Mon, 6 May 2013 08:07:11 +0000 (10:07 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  gd: fix previous (bad include)

11 years agogd: fix previous (bad include)
Remi Collet [Mon, 6 May 2013 08:07:06 +0000 (10:07 +0200)]
gd: fix previous (bad include)

11 years agoMerge branch 'PHP-5.5'
Remi Collet [Mon, 6 May 2013 08:02:34 +0000 (10:02 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  Revert removal of overflow2 use in gd.c Function provided by gd_security with bundled libgd Function provided by gd_compat with system libgd

11 years agoRevert removal of overflow2 use in gd.c
Remi Collet [Mon, 6 May 2013 08:00:45 +0000 (10:00 +0200)]
Revert removal of overflow2 use in gd.c
Function provided by gd_security with bundled libgd
Function provided by gd_compat with system libgd

This fix failed test imageloadfont_invalid.phpt
This test now also pass with system libgd

11 years agoMerge branch 'PHP-5.5'
Remi Collet [Sun, 5 May 2013 08:39:37 +0000 (10:39 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  gd: fix include...

11 years agogd: fix include...
Remi Collet [Sun, 5 May 2013 08:39:33 +0000 (10:39 +0200)]
gd: fix include...

11 years agoMerge branch 'PHP-5.5'
Remi Collet [Sun, 5 May 2013 07:56:52 +0000 (09:56 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  Move (back) missing functions in system libgd to gd_compat - display libPng version in all cases - gd_compat.c in ext/gd (nothing in ext/gd/libgd)

11 years agoMove (back) missing functions in system libgd to gd_compat
Remi Collet [Sun, 5 May 2013 07:54:27 +0000 (09:54 +0200)]
Move (back) missing functions in system libgd to gd_compat
- display libPng version in all cases
- gd_compat.c in ext/gd (nothing in ext/gd/libgd)

11 years agoMerge branch 'PHP-5.5'
Remi Collet [Sun, 5 May 2013 06:35:34 +0000 (08:35 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  gd: don't include png.h (breaks build on some old version), so report libPNG version only with external libgd

11 years agogd: don't include png.h (breaks build on some old version), so report libPNG version...
Remi Collet [Sun, 5 May 2013 06:35:29 +0000 (08:35 +0200)]
gd: don't include png.h (breaks build on some old version), so report libPNG version only with external libgd

11 years agoMerge branch 'PHP-5.5'
Remi Collet [Sun, 5 May 2013 04:52:35 +0000 (06:52 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  gd: missing comma

11 years agogd: missing comma
Remi Collet [Sun, 5 May 2013 04:52:28 +0000 (06:52 +0200)]
gd: missing comma

11 years agoMerge branch 'PHP-5.5'
Remi Collet [Sat, 4 May 2013 18:36:42 +0000 (20:36 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  gd: fix typo and cleanups

11 years agogd: fix typo and cleanups
Remi Collet [Sat, 4 May 2013 18:36:32 +0000 (20:36 +0200)]
gd: fix typo and cleanups

11 years agoMerge branch 'PHP-5.5'
Remi Collet [Sat, 4 May 2013 14:54:46 +0000 (16:54 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  NEWS
  fix build with bundled libgd
  Move png and jpeg version functions to gd.c so the external library build doesn't include anything from libgd/.
  Remove extra unused functions from gd_compat.h
  Rewrite Xpm library check so it doesn't break on MultiArch systems
  Required GD >= 2.1.0 or GD bundled, this allows us to remove most of the #ifdef
  * Remove overflow2, getmbi and skipheaders from gd_compat.h * Add missing return in _php_ctx_getmbi * Reintroduce imagecreatefromxbm by checking for gdCreateImageFromXbm
  Remove overflow2, getmbi and skipheader, since they are not needed anymore.
  Allow to use new GD-2.1.0 function from system library

11 years agoNEWS
Remi Collet [Sat, 4 May 2013 14:54:22 +0000 (16:54 +0200)]
NEWS

11 years agofix build with bundled libgd
Remi Collet [Sat, 4 May 2013 14:51:56 +0000 (16:51 +0200)]
fix build with bundled libgd

11 years agoMove png and jpeg version functions to gd.c so the external library build doesn't...
Ondřej Surý [Fri, 3 May 2013 13:37:39 +0000 (15:37 +0200)]
Move png and jpeg version functions to gd.c so the external library build doesn't include anything from libgd/.

11 years agoRemove extra unused functions from gd_compat.h
Ondřej Surý [Fri, 3 May 2013 13:26:14 +0000 (15:26 +0200)]
Remove extra unused functions from gd_compat.h

11 years agoRewrite Xpm library check so it doesn't break on MultiArch systems
Ondřej Surý [Fri, 3 May 2013 12:01:27 +0000 (14:01 +0200)]
Rewrite Xpm library check so it doesn't break on MultiArch systems

11 years agoRequired GD >= 2.1.0 or GD bundled, this allows us to remove most of the #ifdef
Ondřej Surý [Fri, 3 May 2013 11:53:55 +0000 (13:53 +0200)]
Required GD >= 2.1.0 or GD bundled, this allows us to remove most of the #ifdef

11 years ago* Remove overflow2, getmbi and skipheaders from gd_compat.h * Add missing return...
Ondřej Surý [Fri, 3 May 2013 10:40:45 +0000 (12:40 +0200)]
* Remove overflow2, getmbi and skipheaders from gd_compat.h * Add missing return in _php_ctx_getmbi * Reintroduce imagecreatefromxbm by checking for gdCreateImageFromXbm

11 years agoRemove overflow2, getmbi and skipheader, since they are not needed anymore.
Ondřej Surý [Thu, 25 Apr 2013 12:25:12 +0000 (14:25 +0200)]
Remove overflow2, getmbi and skipheader, since they are not needed anymore.

11 years agoAllow to use new GD-2.1.0 function from system library
Ondřej Surý [Thu, 25 Apr 2013 11:39:35 +0000 (13:39 +0200)]
Allow to use new GD-2.1.0 function from system library

11 years agoMerge branch 'PHP-5.5'
Xinchen Hui [Sat, 4 May 2013 12:45:07 +0000 (20:45 +0800)]
Merge branch 'PHP-5.5'

11 years agoFix #64749 (warning: cast from pointer to integer of different size)
Xinchen Hui [Sat, 4 May 2013 12:42:50 +0000 (20:42 +0800)]
Fix #64749 (warning: cast from pointer to integer of different size)

11 years agoMerge branch 'PHP-5.5'
Anatol Belski [Sat, 4 May 2013 10:20:36 +0000 (12:20 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  better fix for bug #64770
  better fix for bug #64770

11 years agoMerge branch 'PHP-5.4' into PHP-5.5
Anatol Belski [Sat, 4 May 2013 10:20:19 +0000 (12:20 +0200)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  better fix for bug #64770
  better fix for bug #64770

11 years agobetter fix for bug #64770
Anatol Belski [Sat, 4 May 2013 10:19:52 +0000 (12:19 +0200)]
better fix for bug #64770

11 years agoMerge branch 'PHP-5.3' into PHP-5.4
Anatol Belski [Sat, 4 May 2013 10:18:06 +0000 (12:18 +0200)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  better fix for bug #64770

11 years agobetter fix for bug #64770
Anatol Belski [Sat, 4 May 2013 10:16:38 +0000 (12:16 +0200)]
better fix for bug #64770

11 years agoMerge branch 'PHP-5.5'
Boris Lytochkin [Fri, 3 May 2013 20:06:15 +0000 (00:06 +0400)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  remove OS-specific OIDs from 'WALK multiple on single OID with OID suffix as keys' test part

11 years agoMerge branch 'PHP-5.4' into PHP-5.5
Boris Lytochkin [Fri, 3 May 2013 20:06:06 +0000 (00:06 +0400)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  remove OS-specific OIDs from 'WALK multiple on single OID with OID suffix as keys' test part

11 years agoremove OS-specific OIDs from
Boris Lytochkin [Fri, 3 May 2013 20:04:52 +0000 (00:04 +0400)]
remove OS-specific OIDs from
'WALK multiple on single OID with OID suffix as keys' test part

11 years agoMerge branch 'PHP-5.5'
Boris Lytochkin [Fri, 3 May 2013 19:22:27 +0000 (23:22 +0400)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  re-work walkaround for net-snmp BUGid 2027834, no need to detect it anymore add test for Bug #64159 bump default buffer size for values(32->512): do not reallocate buffers in 99% cases
  cut PHP_VERSION_ID - we know API version now

11 years agoMerge branch 'PHP-5.4' into PHP-5.5
Boris Lytochkin [Fri, 3 May 2013 19:10:11 +0000 (23:10 +0400)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  re-work walkaround for net-snmp BUGid 2027834, no need to detect it anymore add test for Bug #64159 bump default buffer size for values(32->512): do not reallocate buffers in 99% cases

11 years agore-work walkaround for net-snmp BUGid 2027834, no need to detect it anymore
Boris Lytochkin [Fri, 3 May 2013 19:06:34 +0000 (23:06 +0400)]
re-work walkaround for net-snmp BUGid 2027834, no need to detect it anymore
add test for Bug #64159
bump default buffer size for values(32->512): do not reallocate buffers in 99% cases

11 years agoMerge branch 'master' of https://git.php.net/push/php-src
Boris Lytochkin [Fri, 3 May 2013 15:25:33 +0000 (19:25 +0400)]
Merge branch 'master' of https://git.php.net/push/php-src

* 'master' of https://git.php.net/push/php-src:
  updated NEWS
  updated NEWS
  Fixed bug #64770 stream_select() fails with pipes

11 years agoMerge branch 'PHP-5.4' of https://git.php.net/push/php-src into PHP-5.4
Boris Lytochkin [Fri, 3 May 2013 15:24:24 +0000 (19:24 +0400)]
Merge branch 'PHP-5.4' of https://git.php.net/push/php-src into PHP-5.4

* 'PHP-5.4' of https://git.php.net/push/php-src:
  updated NEWS
  Fixed bug #64770 stream_select() fails with pipes

11 years agoMerge branch 'PHP-5.3' of https://git.php.net/push/php-src into PHP-5.3
Boris Lytochkin [Fri, 3 May 2013 15:23:46 +0000 (19:23 +0400)]
Merge branch 'PHP-5.3' of https://git.php.net/push/php-src into PHP-5.3

* 'PHP-5.3' of https://git.php.net/push/php-src:
  Fixed bug #64770 stream_select() fails with pipes

11 years agocut PHP_VERSION_ID - we know API version now
Boris Lytochkin [Fri, 3 May 2013 15:22:21 +0000 (19:22 +0400)]
cut PHP_VERSION_ID - we know API version now

11 years agoMerge branch 'PHP-5.5' of https://git.php.net/push/php-src into PHP-5.5
Boris Lytochkin [Fri, 3 May 2013 15:10:22 +0000 (19:10 +0400)]
Merge branch 'PHP-5.5' of https://git.php.net/push/php-src into PHP-5.5

* 'PHP-5.5' of https://git.php.net/push/php-src:
  updated NEWS
  updated NEWS
  Fixed bug #64770 stream_select() fails with pipes

11 years agoMerge branch 'PHP-5.5'
Anatol Belski [Fri, 3 May 2013 15:06:16 +0000 (17:06 +0200)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  updated NEWS
  updated NEWS
  Fixed bug #64770 stream_select() fails with pipes

11 years agoupdated NEWS
Anatol Belski [Fri, 3 May 2013 15:05:54 +0000 (17:05 +0200)]
updated NEWS

11 years agoMerge branch 'PHP-5.4' into PHP-5.5
Anatol Belski [Fri, 3 May 2013 15:04:53 +0000 (17:04 +0200)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  updated NEWS
  Fixed bug #64770 stream_select() fails with pipes

11 years agoupdated NEWS
Anatol Belski [Fri, 3 May 2013 15:04:26 +0000 (17:04 +0200)]
updated NEWS

11 years agoMerge branch 'PHP-5.3' into PHP-5.4
Anatol Belski [Fri, 3 May 2013 15:03:16 +0000 (17:03 +0200)]
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Fixed bug #64770 stream_select() fails with pipes

11 years agoFixed bug #64770 stream_select() fails with pipes
Anatol Belski [Fri, 3 May 2013 15:01:33 +0000 (17:01 +0200)]
Fixed bug #64770 stream_select() fails with pipes

returned by proc_open() on Windows x64

11 years agoMerge branch 'PHP-5.5'
Boris Lytochkin [Fri, 3 May 2013 11:47:29 +0000 (15:47 +0400)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  Fixed bug #64159 (Truncated snmpget)
  Fixed bug #64159 (Truncated snmpget)

11 years agoFixed bug #64159 (Truncated snmpget)
Boris Lytochkin [Fri, 3 May 2013 11:46:43 +0000 (15:46 +0400)]
Fixed bug #64159 (Truncated snmpget)

11 years agoMerge branch 'PHP-5.4' into PHP-5.5
Boris Lytochkin [Fri, 3 May 2013 11:39:57 +0000 (15:39 +0400)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  Fixed bug #64159 (Truncated snmpget)

11 years agoFixed bug #64159 (Truncated snmpget)
Boris Lytochkin [Fri, 3 May 2013 11:35:09 +0000 (15:35 +0400)]
Fixed bug #64159 (Truncated snmpget)

11 years agoMerge branch 'PHP-5.5'
Boris Lytochkin [Fri, 3 May 2013 08:26:16 +0000 (12:26 +0400)]
Merge branch 'PHP-5.5'

* PHP-5.5:
  update NEWS
  update NEWS
  Fix bug #64765 (enclose IPv6 address into square brackets)

11 years agoupdate NEWS
Boris Lytochkin [Fri, 3 May 2013 08:25:49 +0000 (12:25 +0400)]
update NEWS

11 years agoMerge branch 'PHP-5.4' into PHP-5.5
Boris Lytochkin [Fri, 3 May 2013 08:19:10 +0000 (12:19 +0400)]
Merge branch 'PHP-5.4' into PHP-5.5

* PHP-5.4:
  update NEWS
  Fix bug #64765 (enclose IPv6 address into square brackets)

11 years agoupdate NEWS
Boris Lytochkin [Fri, 3 May 2013 08:15:35 +0000 (12:15 +0400)]
update NEWS

11 years agoFix bug #64765 (enclose IPv6 address into square brackets)
Boris Lytochkin [Fri, 3 May 2013 08:13:50 +0000 (12:13 +0400)]
Fix bug #64765 (enclose IPv6 address into square brackets)

11 years agoMerge branch 'master' of https://git.php.net/push/php-src
Boris Lytochkin [Fri, 3 May 2013 07:23:20 +0000 (11:23 +0400)]
Merge branch 'master' of https://git.php.net/push/php-src

* 'master' of https://git.php.net/push/php-src: (346 commits)
  NEWS
  NEWS
  NEWS
  From code coverity scan, syscall return value must be check.
  fix more resource leaks
  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)
  fixed size array cannot be null
  use limit_extensions as we use security_limit_extensions later (free)
  unused variable
  fix possible null deref (detected by code coverity scan)
  updated lib versions
  Oops
  Harden loopback tests
  Fix race condition when ext/hash/tests run in parallel
  Remove trailing space in NEWS
  NEWS for 514afd67
  Fix bug #64729: compilation failure on x32
  don't include smart_str.h in a too global header, fixes #64718
  NEWS
  When Apache use RewriteRule to redirect, via mod_proxy_fgi, to php-fpm the SCRIPT_FILENAME may contains the QUERY_STRING.
  ...

11 years agoMerge branch 'PHP-5.5' of https://git.php.net/push/php-src into PHP-5.5
Boris Lytochkin [Fri, 3 May 2013 07:22:42 +0000 (11:22 +0400)]
Merge branch 'PHP-5.5' of https://git.php.net/push/php-src into PHP-5.5

* 'PHP-5.5' of https://git.php.net/push/php-src: (310 commits)
  NEWS
  NEWS
  NEWS
  From code coverity scan, syscall return value must be check.
  fix more resource leaks
  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)
  fixed size array cannot be null
  use limit_extensions as we use security_limit_extensions later (free)
  unused variable
  fix possible null deref (detected by code coverity scan)
  updated lib versions
  Remove trailing space in NEWS
  NEWS for 514afd67
  Fix bug #64729: compilation failure on x32
  don't include smart_str.h in a too global header, fixes #64718
  NEWS
  When Apache use RewriteRule to redirect, via mod_proxy_fgi, to php-fpm the SCRIPT_FILENAME may contains the QUERY_STRING.
  Added SoapClient constructor option 'ssl_method' to specify ssl method
  fix #64738, fix implicit type declaration
  Avoid possible conditional jump depended on uninitialised value
  ...

11 years agoMerge branch 'PHP-5.4' of https://git.php.net/push/php-src into PHP-5.4
Boris Lytochkin [Fri, 3 May 2013 07:22:16 +0000 (11:22 +0400)]
Merge branch 'PHP-5.4' of https://git.php.net/push/php-src into PHP-5.4

* 'PHP-5.4' of https://git.php.net/push/php-src: (109 commits)
  NEWS
  NEWS
  From code coverity scan, syscall return value must be check.
  fix more resource leaks
  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)
  fixed size array cannot be null
  use limit_extensions as we use security_limit_extensions later (free)
  unused variable
  fix possible null deref (detected by code coverity scan)
  Remove trailing space in NEWS
  NEWS for 514afd67
  Fix bug #64729: compilation failure on x32
  When Apache use RewriteRule to redirect, via mod_proxy_fgi, to php-fpm the SCRIPT_FILENAME may contains the QUERY_STRING.
  Revert "Add CURL_WRAPPERS_ENABLE constant"
  Also fixed bug #64726 in 5.3
  Fixed bug #64726 (Segfault when calling fetch_object on a use_result and DB pointer has closed)
  Fix memory realted to #64726
  updated libmagic.patch
  Fixed bug bug #64713 Compilation warnings in finfo
  Fix Test Bug #64714
  ...

11 years agoMerge branch 'PHP-5.3' of https://git.php.net/push/php-src into PHP-5.3
Boris Lytochkin [Fri, 3 May 2013 07:21:48 +0000 (11:21 +0400)]
Merge branch 'PHP-5.3' of https://git.php.net/push/php-src into PHP-5.3

* 'PHP-5.3' of https://git.php.net/push/php-src: (39 commits)
  NEWS
  From code coverity scan, syscall return value must be check.
  fix more resource leaks
  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)
  fixed size array cannot be null
  use limit_extensions as we use security_limit_extensions later (free)
  unused variable
  fix possible null deref (detected by code coverity scan)
  Also fixed bug #64726 in 5.3
  Fix memory realted to #64726
  Fix Test Bug #64714
  PHP 5.3.26 this will be
  Fix NEWS
  Fix bug #64458 (dns_get_record result with string of length -1)
  Fixed incorrect check. SEND_REF may be executed before DO_FCALL when EX(function_state).function is not yet set to the calling function.
  Fixed stream_socket_pair() on Windows x64 and
  - Updated to version 2013.3 (2013c)
  lower the limit, should fit in a byte
  updated lib versions
  allow lcov 1.10
  ...