summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 5.4.20php-5.4.20PHP-5.4.20Stanislav Malyshev2013-09-173-4/+4
|
* 5.4.20 rc1php-5.4.20RC1Stanislav Malyshev2013-09-033-4/+4
|
* Typo....Xinchen Hui2013-09-021-1/+1
|
* Add a XFAIL test for #64896Xinchen Hui2013-09-021-0/+47
|
* Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4Christopher Jones2013-08-304-5/+44
|\ | | | | | | | | | | * 'PHP-5.4' of https://git.php.net/repository/php-src: Fixed Bug #65564 stack-buffer-overflow in DateTimeZone stuff caught by AddressSanitizer Fixed bug #60598 (cli/apache sapi segfault on objects manipulation)
| * Fixed Bug #65564 stack-buffer-overflow in DateTimeZone stuff caught by ↵Remi Collet2013-08-302-5/+7
| | | | | | | | AddressSanitizer
| * Fixed bug #60598 (cli/apache sapi segfault on objects manipulation)Xinchen Hui2013-08-303-0/+37
| |
* | Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4Christopher Jones2013-08-294-17/+49
|\ \ | |/ | | | | | | | | | | | | * 'PHP-5.4' of https://git.php.net/repository/php-src: Fixed bug #61759 (class_alias() should accept classes with leading backslashes). (Julien) Fixed bug #61759 (class_alias() should accept classes with leading backslashes). (Julien) Avoid compiler warning Fix bug #65579 (Using traits with get_class_methods causes segfault).
| * Fixed bug #61759 (class_alias() should accept classes with leading ↵Dmitry Stogov2013-08-292-9/+7
| | | | | | | | backslashes). (Julien)
| * Fixed bug #61759 (class_alias() should accept classes with leading ↵Dmitry Stogov2013-08-291-0/+2
| | | | | | | | backslashes). (Julien)
| * Avoid compiler warningXinchen Hui2013-08-291-1/+1
| |
| * Fix bug #65579 (Using traits with get_class_methods causes segfault).Adam Harvey2013-08-283-8/+40
| | | | | | | | | | | | | | Specifically, this checks if there are trait aliases defined in the class scope before attempting to dereference the first trait alias. This handles the case where a trait alias was used in a child trait but no aliases exist in the concrete class.
* | Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4Christopher Jones2013-08-281-1/+1
|\ \ | |/ | | | | | | * 'PHP-5.4' of https://git.php.net/repository/php-src: updated lib versions
| * updated lib versionsAnatol Belski2013-08-281-1/+1
|/
* Fix bug #65554 in DateTime, when use it with D/l in format and textual day ↵gron19872013-08-254-102/+137
| | | | have dot at the end
* Fix DateInterval->days value when object was created not from DateTime::diff()Alexander Moskalev2013-08-242-1/+15
|
* Test extension xmlrpc encode type double and string decode type string and introot2013-08-243-0/+105
|
* Stricter libc-client symlink checkOle Markus With2013-08-241-2/+2
|
* Fix #65483: quoted-printable encode stream filter incorrectly encoding spacesMichael M Slusarz2013-08-243-1/+24
|
* Update NEWSChristopher Jones2013-08-231-0/+2
|
* Remove duplicate calls to set filename & lineno for the ↵Christopher Jones2013-08-231-2/+0
| | | | DTRACE_FUNCTION_ENTRY/RETURN cases
* Suppress compliation warning "warning: passing argument 1 of ‘_efree’ ↵Christopher Jones2013-08-221-1/+1
| | | | discards qualifiers from pointer target type"
* Revert "Suppress compliation warning "warning: passing argument 1 of ↵Christopher Jones2013-08-221-1/+1
| | | | | | ‘_efree’ discards qualifiers from pointer target type"" This reverts commit f38bd22ed2c5f710f72e719d7ab2a41ce30541fc.
* Fixed other compiler warningsMatteo Beccati2013-08-223-3/+6
|
* Suppress compiler warning "warning: variable ‘length’ set but not used ↵Christopher Jones2013-08-211-2/+0
| | | | [-Wunused-but-set-variable]"
* Suppress compiler warning "warning: variable ‘retcount’ set but not used ↵Christopher Jones2013-08-211-0/+4
| | | | [-Wunused-but-set-variable]"
* Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4Christopher Jones2013-08-211-1/+1
|\ | | | | | | | | * 'PHP-5.4' of https://git.php.net/repository/php-src: Suppress compliation warning "warning: passing argument 1 of ‘_efree’ discards qualifiers from pointer target type"
| * Suppress compliation warning "warning: passing argument 1 of ‘_efree’ ↵Christopher Jones2013-08-211-1/+1
|/ | | | discards qualifiers from pointer target type"
* Fix pointer sign warning showing up in EVERY buildMichael Wallner2013-08-211-1/+1
|
* Fixed compiler warnings in ext/pgsqlMatteo Beccati2013-08-211-16/+25
|
* Fixed other compiler warnings in PDO_PGSQLMatteo Beccati2013-08-212-5/+5
|
* Fixed compiler warningMatteo Beccati2013-08-211-4/+4
| | | | | | | I moved the constant to the enum in order to avoid this: ext/pgsql/pgsql.c:3491: warning: comparison is always false due to limited range of data type Works in gcc 4.6, but I'm not sure about other compilers.
* Quash compile warning "warning: 'flags' may be used uninitialized in this ↵Christopher Jones2013-08-201-1/+1
| | | | function"
* Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4Christopher Jones2013-08-204-31/+111
|\ | | | | | | | | * 'PHP-5.4' of https://git.php.net/repository/php-src: Fix bug #64953 (Postgres prepared statement positional parameter casting)
| * Fix bug #64953 (Postgres prepared statement positional parameter casting)Michael Wallner2013-08-204-31/+111
| |
* | Eliminate compiler warnings: "warning: pointer targets in initialization ↵Christopher Jones2013-08-201-4/+4
| | | | | | | | differ in signedness"
* | Eliminate compiler warnings "warning: pointer targets in initialization ↵Christopher Jones2013-08-201-103/+103
| | | | | | | | differ in signedness"
* | Remove some compilation warnings:Christopher Jones2013-08-204-3/+15
| | | | | | | | | | 'unused variable' and 'enumeration value not handled in switch'
* | Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4Christopher Jones2013-08-203-6/+15
|\ \ | |/ | | | | | | * 'PHP-5.4' of https://git.php.net/repository/php-src: bump version
| * bump versionStanislav Malyshev2013-08-193-6/+15
| |
* | Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4Christopher Jones2013-08-199-70/+200
|\ \ | |/ | | | | | | | | | | | | * 'PHP-5.4' of https://git.php.net/repository/php-src: Update NEWS fix bug #65481 (shutdown segfault due to serialize) Track created curl_slist structs by option so they can be updated in situ. Fixed bug #64503 (Compilation fails with error: conflicting types for 'zendparse').
| * Update NEWSChristopher Jones2013-08-191-1/+1
| |
| * fix bug #65481 (shutdown segfault due to serialize)Michael Wallner2013-08-205-58/+154
| |
| * Track created curl_slist structs by option so they can be updated in situ.Adam Harvey2013-08-194-6/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | At present, when curl_setopt() is called with an option that requires the creation of a curl_slist, we simply push the new curl_slist onto a list to be freed when the curl handle is freed. This avoids a memory leak, but means that repeated calls to curl_setopt() on the same handle with the same option wastes previously allocated memory on curl_slist structs that will no longer be read. This commit changes the zend_llist that was previously used to track the lists to a HashTable keyed by the option number, which means that we can simply update the hash table each time curl_setopt() is called. Fixes bug #65458 (curl memory leak).
| * Fixed bug #64503 (Compilation fails with error: conflicting types for ↵Xinchen Hui2013-08-191-5/+7
| | | | | | | | 'zendparse').
* | Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4Christopher Jones2013-08-1912-45/+315
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | * 'PHP-5.4' of https://git.php.net/repository/php-src: added new glob() test fix using wrong buffer pointer Fix bug #65470 Segmentation fault in zend_error() with --enable-dtrace Fix for php bug #64802 includes test case new for fix #65225 Fixed #65225: PHP_BINARY incorrectly set Use pkg-config to detect iodbc Add -P option to use the current binary Create test to the extension xmlrpc Fixbug: phpize --clean will delete include/*.h
| * added new glob() testAnatol Belski2013-08-191-0/+19
| |
| * Merge branch 'PHP-5.3' into PHP-5.4Stanislav Malyshev2013-08-191-0/+1
| |\ | | | | | | | | | | | | * PHP-5.3: fix using wrong buffer pointer
| | * fix using wrong buffer pointerStanislav Malyshev2013-08-191-0/+1
| | |
| * | Fix bug #65470 Segmentation fault in zend_error() with --enable-dtraceStanislav Malyshev2013-08-182-2/+6
| | |