]> granicus.if.org Git - php/log
php
11 years agoFixed Bug #66094 (unregister_tick_function tries to cast a Closure to a string)
Xinchen Hui [Sun, 17 Nov 2013 09:04:37 +0000 (17:04 +0800)]
Fixed Bug #66094 (unregister_tick_function tries to cast a Closure to a string)

11 years agoUpdate NEWS and remove the unnecessary UPGRADING note.
Adam Harvey [Sun, 10 Nov 2013 20:46:31 +0000 (15:46 -0500)]
Update NEWS and remove the unnecessary UPGRADING note.

11 years agoMerge remote-tracking branch 'ajf/JSONWhitespaceFix' into PHP-5.4
Adam Harvey [Sun, 10 Nov 2013 20:43:56 +0000 (15:43 -0500)]
Merge remote-tracking branch 'ajf/JSONWhitespaceFix' into PHP-5.4

11 years agoFix broken test
Rasmus Lerdorf [Sat, 9 Nov 2013 17:45:52 +0000 (09:45 -0800)]
Fix broken test

11 years agoFixed bug #65947 (basename is no more working after fgetcsv in certain situation)
Xinchen Hui [Fri, 8 Nov 2013 07:32:28 +0000 (15:32 +0800)]
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

11 years agoFixed Bug #66043 (Segfault calling bind_param() on mysqli)
Xinchen Hui [Fri, 8 Nov 2013 07:06:36 +0000 (15:06 +0800)]
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

11 years agoNEWS entry
Rasmus Lerdorf [Fri, 8 Nov 2013 02:15:15 +0000 (18:15 -0800)]
NEWS entry

11 years agoFix bug #65946 - pdo_sql_parser.c permanently converts values bound to strings
Rasmus Lerdorf [Fri, 8 Nov 2013 02:05:08 +0000 (18:05 -0800)]
Fix bug #65946 - pdo_sql_parser.c permanently converts values bound to strings

11 years agoMerge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4
Rasmus Lerdorf [Thu, 7 Nov 2013 15:55:26 +0000 (07:55 -0800)]
Merge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4

* 'PHP-5.4' of git.php.net:php-src: (65 commits)
  Add a couple more test cases to parse_url() tests
  fix missing change from 'tcp_socket' to the more common 'server'
  fix many parallel test issues
  Cleanup temp test file
  Fixed Bug #66034 (Segmentation Fault when constructor of PDO statement throws an exception)
  Typo fix: umknown -> unknown
  Fix bug #66008
  5.4.23-dev
  Update NEWS
  Fixed Bug 64760 var_export() does not use full precision for floating-point numbers
  add bundled libzip LICENSE, as required by BSD License terms
  - Updated to version 2013.8 (2013h)
  remove "PHP 6" staff
  Fixed bug #65950 Field name truncation if the field name is bigger than 32 characters
  - Updated to version 2013.7 (2013g)
  Fix Coverity issue reporting wrong sizeof()
  exif NEWS
  add tests for bug #62523
  Merged PR #293 (Exif crash on unknown encoding was fixed) By:  Draal Conflicts:  configure.in  main/php_version.h
  Just SKIP that test on travis
  ...

11 years agoAdd a couple more test cases to parse_url() tests
Sara Golemon [Wed, 10 Jul 2013 15:26:47 +0000 (08:26 -0700)]
Add a couple more test cases to parse_url() tests

http://::# (valid but silly)
http://#   (invalid)

11 years agofix missing change from 'tcp_socket' to the more common 'server'
ptarjan [Thu, 26 Sep 2013 08:06:36 +0000 (01:06 -0700)]
fix missing change from 'tcp_socket' to the more common 'server'

11 years agofix many parallel test issues
ptarjan [Thu, 26 Sep 2013 07:18:05 +0000 (00:18 -0700)]
fix many parallel test issues

While running these on HHVM I've run into a lot of parallelism issues.
I'm backporting all the fixes I had to do in
https://github.com/facebook/hiphop-php/blob/master/hphp/tools/import_zend_test.py#L650
to php core.

Most of these changes were just filenames that were shared between
tests, but I did more surgery on the fixed ports. I can apreciate port
31337 as much as the next nerd, but random ports are better for tests.

11 years agoCleanup temp test file
Christopher Jones [Wed, 10 Jul 2013 18:17:52 +0000 (11:17 -0700)]
Cleanup temp test file

11 years agoFixed Bug #66034 (Segmentation Fault when constructor of PDO statement throws an...
Xinchen Hui [Tue, 5 Nov 2013 03:04:55 +0000 (11:04 +0800)]
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

11 years agoMerge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4
Xinchen Hui [Tue, 5 Nov 2013 03:03:47 +0000 (11:03 +0800)]
Merge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4

11 years agoTypo fix: umknown -> unknown
Lior Kaplan [Thu, 31 Oct 2013 21:12:41 +0000 (23:12 +0200)]
Typo fix: umknown -> unknown

11 years agoFix bug #66008
Rasmus Lerdorf [Thu, 31 Oct 2013 10:06:35 +0000 (03:06 -0700)]
Fix bug #66008

11 years ago5.4.23-dev
Stanislav Malyshev [Wed, 30 Oct 2013 01:11:02 +0000 (18:11 -0700)]
5.4.23-dev

11 years agoMerge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4
Yasuo Ohgaki [Tue, 29 Oct 2013 08:38:22 +0000 (17:38 +0900)]
Merge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4

* 'PHP-5.4' of git.php.net:php-src:
  add bundled libzip LICENSE, as required by BSD License terms

11 years agoUpdate NEWS
Yasuo Ohgaki [Tue, 29 Oct 2013 08:27:49 +0000 (17:27 +0900)]
Update NEWS

11 years agoFixed Bug 64760 var_export() does not use full precision for floating-point numbers
Yasuo Ohgaki [Tue, 29 Oct 2013 08:24:23 +0000 (17:24 +0900)]
Fixed Bug 64760 var_export() does not use full precision for floating-point numbers

11 years agoadd bundled libzip LICENSE, as required by BSD License terms
Remi Collet [Tue, 29 Oct 2013 08:02:24 +0000 (09:02 +0100)]
add bundled libzip LICENSE, as required by BSD License terms

11 years agoMerge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4
Yasuo Ohgaki [Tue, 29 Oct 2013 05:03:17 +0000 (14:03 +0900)]
Merge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4

* 'PHP-5.4' of git.php.net:php-src:
  - Updated to version 2013.8 (2013h)
  Fixed bug #65950 Field name truncation if the field name is bigger than 32 characters
  - Updated to version 2013.7 (2013g)

11 years ago- Updated to version 2013.8 (2013h)
Derick Rethans [Mon, 28 Oct 2013 14:12:30 +0000 (15:12 +0100)]
- Updated to version 2013.8 (2013h)

11 years agoMerge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4
Derick Rethans [Mon, 28 Oct 2013 14:08:57 +0000 (15:08 +0100)]
Merge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4

11 years agoMerge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4
Xinchen Hui [Sun, 27 Oct 2013 08:53:05 +0000 (16:53 +0800)]
Merge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4

11 years agoremove "PHP 6" staff
Xinchen Hui [Sun, 27 Oct 2013 08:52:43 +0000 (16:52 +0800)]
remove "PHP 6" staff

11 years agoFixed bug #65950 Field name truncation if the field name is bigger than 32 characters
Yasuo Ohgaki [Sat, 26 Oct 2013 01:31:21 +0000 (10:31 +0900)]
Fixed bug #65950 Field name truncation if the field name is bigger than 32 characters

11 years ago- Updated to version 2013.7 (2013g)
Derick Rethans [Wed, 23 Oct 2013 21:33:53 +0000 (22:33 +0100)]
- Updated to version 2013.7 (2013g)

11 years agoFix Coverity issue reporting wrong sizeof()
Yasuo Ohgaki [Tue, 22 Oct 2013 03:27:18 +0000 (12:27 +0900)]
Fix Coverity issue reporting wrong sizeof()

11 years agoMerge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4
Yasuo Ohgaki [Tue, 22 Oct 2013 03:23:07 +0000 (12:23 +0900)]
Merge branch 'PHP-5.4' of git.php.net:php-src into PHP-5.4

* 'PHP-5.4' of git.php.net:php-src: (101 commits)
  exif NEWS
  add tests for bug #62523
  Merged PR #293 (Exif crash on unknown encoding was fixed) By:  Draal Conflicts:  configure.in  main/php_version.h
  Just SKIP that test on travis
  fix memory leak on error (from Coverity scan)
  Fix coverity issue with -1 returned by findOffset not being handled by getPreferredTag
  5.4.21 release date
  When src->src is null this doesn't get initialized but it is still used, so the passed in *ze will point to unitialized memory. Hopefully src->src is never null, but just in case this initialization doesn't hurt.
  Fix typo
  Clean up this weird safe_emalloc() call
  Minor Coverity tweaks
  - Moved NULL check before dereferencing
  - Fixed possible NULL ptr dereference
  - Fixed possible uninitialized scalar variable usage (spotted by Coverity)
  Remove senseless check here
  - Fix extern declaration according to definition
  - Fix possible memory leak
  - Moved allocation to if block to make Coverity happy
  - Fixed possible memory leak
  Fix unitialized opened_path here - found by Coverity
  ...

11 years agoexif NEWS
Michael Wallner [Mon, 21 Oct 2013 20:44:37 +0000 (22:44 +0200)]
exif NEWS

11 years agoadd tests for bug #62523
Michael Wallner [Mon, 21 Oct 2013 20:15:09 +0000 (22:15 +0200)]
add tests for bug #62523

11 years agoMerged PR #293 (Exif crash on unknown encoding was fixed)
Michael Wallner [Mon, 21 Oct 2013 19:48:27 +0000 (21:48 +0200)]
Merged PR #293 (Exif crash on unknown encoding was fixed)
By:
Draal
Conflicts:
configure.in
main/php_version.h

11 years agoJust SKIP that test on travis
Michael Wallner [Mon, 21 Oct 2013 10:16:41 +0000 (12:16 +0200)]
Just SKIP that test on travis

11 years agofix memory leak on error (from Coverity scan)
Stanislav Malyshev [Mon, 21 Oct 2013 07:01:24 +0000 (00:01 -0700)]
fix memory leak on error (from Coverity scan)

11 years agoFix coverity issue with -1 returned by findOffset not being handled by getPreferredTag
Stanislav Malyshev [Mon, 21 Oct 2013 05:04:21 +0000 (22:04 -0700)]
Fix coverity issue with -1 returned by findOffset not being handled by getPreferredTag

11 years ago5.4.21 release date
Stanislav Malyshev [Mon, 21 Oct 2013 02:59:39 +0000 (19:59 -0700)]
5.4.21 release date

11 years agoWhen src->src is null this doesn't get initialized
Rasmus Lerdorf [Mon, 21 Oct 2013 05:15:35 +0000 (22:15 -0700)]
When src->src is null this doesn't get initialized
but it is still used, so the passed in *ze will point
to unitialized memory. Hopefully src->src is never
null, but just in case this initialization doesn't hurt.

11 years agoFix typo
Rasmus Lerdorf [Mon, 21 Oct 2013 00:55:55 +0000 (17:55 -0700)]
Fix typo

11 years agoClean up this weird safe_emalloc() call
Rasmus Lerdorf [Sun, 20 Oct 2013 16:36:50 +0000 (09:36 -0700)]
Clean up this weird safe_emalloc() call

11 years agoMinor Coverity tweaks
Rasmus Lerdorf [Sun, 20 Oct 2013 15:55:48 +0000 (08:55 -0700)]
Minor Coverity tweaks

11 years ago- Moved NULL check before dereferencing
Felipe Pena [Sun, 20 Oct 2013 11:50:11 +0000 (09:50 -0200)]
- Moved NULL check before dereferencing

11 years ago- Fixed possible NULL ptr dereference
Felipe Pena [Sun, 20 Oct 2013 11:04:24 +0000 (09:04 -0200)]
- Fixed possible NULL ptr dereference

11 years agoMerge branch 'PHP-5.4' of git.php.net:/php-src into PHP-5.4
Felipe Pena [Sun, 20 Oct 2013 10:52:31 +0000 (08:52 -0200)]
Merge branch 'PHP-5.4' of git.php.net:/php-src into PHP-5.4

11 years ago- Fixed possible uninitialized scalar variable usage (spotted by Coverity)
Felipe Pena [Sun, 20 Oct 2013 10:51:09 +0000 (08:51 -0200)]
- Fixed possible uninitialized scalar variable usage (spotted by Coverity)

11 years agoRemove senseless check here
Rasmus Lerdorf [Sun, 20 Oct 2013 03:55:02 +0000 (20:55 -0700)]
Remove senseless check here

11 years ago- Fix extern declaration according to definition
Felipe Pena [Sun, 20 Oct 2013 03:16:07 +0000 (01:16 -0200)]
- Fix extern declaration according to definition

11 years ago- Fix possible memory leak
Felipe Pena [Sun, 20 Oct 2013 03:04:55 +0000 (01:04 -0200)]
- Fix possible memory leak

11 years ago- Moved allocation to if block to make Coverity happy
Felipe Pena [Sun, 20 Oct 2013 02:36:28 +0000 (23:36 -0300)]
- Moved allocation to if block to make Coverity happy

11 years ago- Fixed possible memory leak
Felipe Pena [Sun, 20 Oct 2013 02:29:34 +0000 (23:29 -0300)]
- Fixed possible memory leak

11 years agoFix unitialized opened_path here - found by Coverity
Rasmus Lerdorf [Sun, 20 Oct 2013 02:24:17 +0000 (19:24 -0700)]
Fix unitialized opened_path here - found by Coverity

11 years agoInitialize these to make Coverity happy
Rasmus Lerdorf [Sun, 20 Oct 2013 00:37:59 +0000 (17:37 -0700)]
Initialize these to make Coverity happy

11 years agoTypo fix: managment -> management
Lior Kaplan [Sat, 19 Oct 2013 20:53:23 +0000 (23:53 +0300)]
Typo fix: managment -> management

11 years agoUse minus sign instead of hyphen
Lior Kaplan [Sat, 19 Oct 2013 20:52:43 +0000 (23:52 +0300)]
Use minus sign instead of hyphen

11 years agoMerge branch 'pull-request/499'
Rasmus Lerdorf [Sat, 19 Oct 2013 07:01:13 +0000 (00:01 -0700)]
Merge branch 'pull-request/499'
Fix RFC 6598 IPv4 Reserved Range Checks

11 years agouse $YACC instead of 'bison' as suggested by Yasuo
Michael Wallner [Fri, 9 Aug 2013 06:32:39 +0000 (08:32 +0200)]
use $YACC instead of 'bison' as suggested by Yasuo

Conflicts:
Zend/acinclude.m4

11 years agoFixed bug #65911 ($this not usable as static property)
bwoebi [Wed, 16 Oct 2013 14:04:23 +0000 (16:04 +0200)]
Fixed bug #65911 ($this not usable as static property)

In context of static accesses like classname::$this, the string
"$this" should not be handled like a $this variable, but as an
identifier for a static variable.

11 years agoUPGRADING and NEWS
Andrea Faulds [Tue, 15 Oct 2013 22:44:23 +0000 (22:44 +0000)]
UPGRADING and NEWS

11 years agoMerge branch 'PHP-5.4' into JSONWhitespaceFix
Andrea Faulds [Tue, 15 Oct 2013 22:38:46 +0000 (22:38 +0000)]
Merge branch 'PHP-5.4' into JSONWhitespaceFix

11 years agoBetter test: Check combined leading/trailing
Andrea Faulds [Tue, 15 Oct 2013 20:42:31 +0000 (20:42 +0000)]
Better test: Check combined leading/trailing

11 years agofix whitespaces
Anatol Belski [Mon, 14 Oct 2013 15:12:32 +0000 (17:12 +0200)]
fix whitespaces

11 years agoadded notes about the PECL site conformity
Anatol Belski [Mon, 14 Oct 2013 14:07:26 +0000 (16:07 +0200)]
added notes about the PECL site conformity

11 years agofixed skeleton to produce the normalized ext version macros
Anatol Belski [Mon, 14 Oct 2013 12:18:43 +0000 (14:18 +0200)]
fixed skeleton to produce the normalized ext version macros

See http://news.php.net/php.pecl.dev/11191 for more info.

11 years ago- Fixed possible memory leak
Felipe Pena [Sat, 12 Oct 2013 21:06:20 +0000 (18:06 -0300)]
- Fixed possible memory leak

11 years agoMerge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4
Christopher Jones [Wed, 9 Oct 2013 16:40:54 +0000 (09:40 -0700)]
Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4

# By Daniel Lowrey (1) and Michael Wallner (1)
# Via Michael Wallner
* 'PHP-5.4' of https://git.php.net/repository/php-src:
  C89 compatibility
  Fixed segfault when built with OpenSSL >= 1.0.1

11 years agoC89 compatibility
Michael Wallner [Wed, 9 Oct 2013 10:30:31 +0000 (12:30 +0200)]
C89 compatibility

11 years agoFixed segfault when built with OpenSSL >= 1.0.1
Daniel Lowrey [Mon, 7 Oct 2013 19:02:48 +0000 (15:02 -0400)]
Fixed segfault when built with OpenSSL >= 1.0.1

(PR #481)

11 years agofixing a minor typo in CODING_STANDARDS document
ArunSK [Sun, 6 Oct 2013 22:26:49 +0000 (00:26 +0200)]
fixing a minor typo in CODING_STANDARDS document

11 years agoFIX BUG #65219 - Typo correction
Stanley Sufficool [Sun, 6 Oct 2013 03:59:20 +0000 (20:59 -0700)]
FIX BUG #65219 - Typo correction

11 years agoMerge branch 'PHP-5.4' of https://git.php.net/push/php-src into PHP-5.4
Stanley Sufficool [Sat, 5 Oct 2013 16:57:13 +0000 (09:57 -0700)]
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:
  - Fixed bug #65818 (Segfault with built-in webserver and chunked transfer encoding)
  - BFN
  Fix bug #65667: ftp_nb_continue produces segfault
  fix bug #64146 (serialize incorrectly saving objects when they are cloned)
  such a weird hack probably helps in finding regressions in the future
  Fixed bug #64230 (XMLReader does not suppress errors)
  typo: really fix bug #51936  Crash with clone xmlreader
  fix bug #59613 (Crash with clone XMLReader)
  fix bug #65808  the socket_connect() won't work with IPv6 address
  5.4.22-dev now
  fix bug #62396 'make test' crashes starting with 5.3.14 (missing gzencode())
  Fixed bug #61548
  fix test
  fix memleak on resetting rebind_proc
  Fix bug #65322: compile time errors won't trigger auto loading
  5.4.20 release date
  Add information about which INI file is which inside respective files
  - Updated to version 2013.6 (2013f)

11 years agoFIX BUG #65219 - USE DB not being sent for FreeTDS version < 0.92
Stanley Sufficool [Sat, 5 Oct 2013 16:54:45 +0000 (09:54 -0700)]
FIX BUG #65219 - USE DB not being sent for FreeTDS version < 0.92
FreeTDS <0.92 does not support DBSETLDBNAME option and therefore
will not work with SQL Azure. Fallback to dbuse command in
letter versions.

11 years ago- Fixed bug #65818 (Segfault with built-in webserver and chunked transfer encoding)
Felipe Pena [Sat, 5 Oct 2013 15:52:55 +0000 (12:52 -0300)]
- Fixed bug #65818 (Segfault with built-in webserver and chunked transfer encoding)

11 years ago- BFN
Felipe Pena [Sat, 5 Oct 2013 15:52:32 +0000 (12:52 -0300)]
- BFN

11 years agoMerge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4
Christopher Jones [Fri, 4 Oct 2013 17:50:53 +0000 (10:50 -0700)]
Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4

* 'PHP-5.4' of https://git.php.net/repository/php-src:
  Fix bug #65667: ftp_nb_continue produces segfault
  fix bug #64146 (serialize incorrectly saving objects when they are cloned)
  such a weird hack probably helps in finding regressions in the future

11 years agoFix bug #65667: ftp_nb_continue produces segfault
Philip Hofstetter [Wed, 2 Oct 2013 06:35:02 +0000 (08:35 +0200)]
Fix bug #65667: ftp_nb_continue produces segfault

the idea behind ftp_nb_get is for it to be followed by multiple calls
to ftp_nb_continue in order to download a file piece-by-piece.

As such, it's unwise to close the stream used to write the downloaded
data to when the file hasn't been completely downloaded within the first
call to ftp_nb_get.

This regression was added in a93a462dcefd62e07963dd2da506fbb3409c88b5
and this patch restores the behavior that was seen pre-patch.

11 years agofix bug #64146 (serialize incorrectly saving objects when they are
Michael Wallner [Fri, 4 Oct 2013 14:16:15 +0000 (16:16 +0200)]
fix bug #64146 (serialize incorrectly saving objects when they are
cloned)

11 years agosuch a weird hack probably helps in finding regressions in the future
Michael Wallner [Fri, 4 Oct 2013 14:11:49 +0000 (16:11 +0200)]
such a weird hack probably helps in finding regressions in the future

11 years agoMerge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4
Christopher Jones [Fri, 4 Oct 2013 12:40:30 +0000 (05:40 -0700)]
Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4

* 'PHP-5.4' of https://git.php.net/repository/php-src:
  Fixed bug #64230 (XMLReader does not suppress errors)

11 years agoFixed bug #64230 (XMLReader does not suppress errors)
Michael Wallner [Fri, 4 Oct 2013 09:22:17 +0000 (11:22 +0200)]
Fixed bug #64230 (XMLReader does not suppress errors)

11 years agoMerge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4
Christopher Jones [Thu, 3 Oct 2013 12:40:24 +0000 (05:40 -0700)]
Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4

* 'PHP-5.4' of https://git.php.net/repository/php-src:
  typo: really fix bug #51936  Crash with clone xmlreader
  fix bug #59613 (Crash with clone XMLReader)
  fix bug #65808  the socket_connect() won't work with IPv6 address

11 years agotypo: really fix bug #51936 Crash with clone xmlreader
Michael Wallner [Thu, 3 Oct 2013 11:34:31 +0000 (13:34 +0200)]
typo: really fix bug #51936  Crash with clone xmlreader

11 years agofix bug #59613 (Crash with clone XMLReader)
Michael Wallner [Thu, 3 Oct 2013 11:28:41 +0000 (13:28 +0200)]
fix bug #59613 (Crash with clone XMLReader)

11 years agofix bug #65808 the socket_connect() won't work with IPv6 address
Michael Wallner [Wed, 2 Oct 2013 13:19:25 +0000 (15:19 +0200)]
fix bug #65808  the socket_connect() won't work with IPv6 address

11 years agoMerge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4
Christopher Jones [Wed, 2 Oct 2013 12:40:33 +0000 (05:40 -0700)]
Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4

* 'PHP-5.4' of https://git.php.net/repository/php-src:
  5.4.22-dev now
  fix bug #62396 'make test' crashes starting with 5.3.14 (missing gzencode())

11 years ago5.4.22-dev now
Stanislav Malyshev [Wed, 2 Oct 2013 05:25:56 +0000 (22:25 -0700)]
5.4.22-dev now

11 years agoMerge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4
Christopher Jones [Tue, 1 Oct 2013 17:19:24 +0000 (10:19 -0700)]
Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4

# By Michael Wallner
# Via Michael Wallner
* 'PHP-5.4' of https://git.php.net/repository/php-src:
  fix bug #62396 'make test' crashes starting with 5.3.14 (missing gzencode())
  Fixed bug #61548

11 years agofix bug #62396 'make test' crashes starting with 5.3.14
Michael Wallner [Tue, 1 Oct 2013 15:01:03 +0000 (17:01 +0200)]
fix bug #62396 'make test' crashes starting with 5.3.14
(missing gzencode())

11 years agoMerge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4
Christopher Jones [Tue, 1 Oct 2013 12:40:24 +0000 (05:40 -0700)]
Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4

* 'PHP-5.4' of https://git.php.net/repository/php-src:
  Fixed bug #61548

11 years agoFixed bug #61548
Michael Wallner [Tue, 1 Oct 2013 09:07:55 +0000 (11:07 +0200)]
Fixed bug #61548

11 years agoMerge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4
Christopher Jones [Mon, 30 Sep 2013 22:54:34 +0000 (15:54 -0700)]
Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4

# By Michael Wallner (2) and others
# Via Michael Wallner
* 'PHP-5.4' of https://git.php.net/repository/php-src:
  fix test
  fix memleak on resetting rebind_proc
  Fix bug #65322: compile time errors won't trigger auto loading
  5.4.20 release date

11 years agofix test
Michael Wallner [Mon, 30 Sep 2013 09:41:35 +0000 (11:41 +0200)]
fix test

11 years agofix memleak on resetting rebind_proc
Michael Wallner [Mon, 30 Sep 2013 09:23:33 +0000 (11:23 +0200)]
fix memleak on resetting rebind_proc

11 years agoFix bug #65322: compile time errors won't trigger auto loading
Nikita Popov [Sun, 29 Sep 2013 15:58:25 +0000 (17:58 +0200)]
Fix bug #65322: compile time errors won't trigger auto loading

Also fixes duplicate bugs #54054 and #42098.

Furthermore this fixes incorrect error messages thrown from code
running inside an error handler when a compilation is in progress.
The error file and line are now correctly associated with the
file/line of the executor, rather than the compiler.

11 years ago5.4.20 release date
Stanislav Malyshev [Sun, 29 Sep 2013 01:04:44 +0000 (18:04 -0700)]
5.4.20 release date

11 years agoMerge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4
Christopher Jones [Fri, 27 Sep 2013 22:57:04 +0000 (15:57 -0700)]
Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4

# By Derick Rethans (1) and others
# Via Lior Kaplan (1) and Stanley Sufficool (1)
* 'PHP-5.4' of https://git.php.net/repository/php-src:
  Add information about which INI file is which inside respective files
  - Updated to version 2013.6 (2013f)
  FIX BUG #48539 - Disable TEXTLIMIT for FreeTDS driver

11 years agoAdd information about which INI file is which inside respective files
Ondřej Surý [Fri, 27 Sep 2013 15:46:14 +0000 (17:46 +0200)]
Add information about which INI file is which inside respective files

11 years ago- Updated to version 2013.6 (2013f)
Derick Rethans [Fri, 27 Sep 2013 09:14:46 +0000 (10:14 +0100)]
- Updated to version 2013.6 (2013f)

11 years agoFIX BUG #48539 - Disable TEXTLIMIT for FreeTDS driver
Stanley Sufficool [Fri, 27 Sep 2013 02:53:47 +0000 (19:53 -0700)]
FIX BUG #48539 - Disable TEXTLIMIT for FreeTDS driver

11 years agoMerge branch 'PHP-5.4' of https://git.php.net/push/php-src into PHP-5.4
Stanley Sufficool [Fri, 27 Sep 2013 02:52:01 +0000 (19:52 -0700)]
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: (140 commits)
  Copy dba_*() keys before converting to string.
  Fix the broken sh syntax in ext/imap/config.m4.
  Revert "EmptyIterator now implements Countable; fixes bug 60577"
  RFC 6598 reserved ip range starts at 100.64.0.0
  fix a very rare case of use of uninitialized value combined with a memleak
  NEWS for added reserved ip addresses according to RFC 6598
  Add RFC 6598 IPs to reserved addresses
  NEWS for #60577
  NEWS for bug #64441
  Fix bug #64441 (FILTER_VALIDATE_URL rejects fully qualified domain names)
  EmptyIterator now implements Countable; fixes bug 60577
  News for bugfix #64157
  Bug 64157 Changed error message to make sense
  Tinker with the wording of the short_open_tag description.
  Handle CLI server request headers case insensitively.
  5.4.21 now
  Typo....
  Add a XFAIL test for #64896
  Fixed Bug #65564 stack-buffer-overflow in DateTimeZone stuff caught by AddressSanitizer
  Fixed bug #60598 (cli/apache sapi segfault on objects manipulation)
  ...