summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | 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
| | | |
| * | | Fix for php bug #64802 includes test caseMark Jones2013-08-184-30/+116
| | | |
| * | | new for fix #65225Stanislav Malyshev2013-08-181-0/+1
| | | |
| * | | Fixed #65225: PHP_BINARY incorrectly setPatrick Allaert2013-08-181-1/+6
| | | |
| * | | Use pkg-config to detect iodbcOle Markus With2013-08-181-11/+26
| | | |
| * | | Add -P option to use the current binaryStanislav Malyshev2013-08-181-0/+11
| | | |
| * | | Create test to the extension xmlrpcroot2013-08-182-0/+128
| | | |
| * | | Fixbug: phpize --clean will delete include/*.hTianfeng2013-08-181-1/+1
|/ / /
* | | Update NEWSChristopher Jones2013-08-161-2/+3
| | |
* | | Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4Christopher Jones2013-08-161-1/+1
|\ \ \ | | | | | | | | | | | | | | | | * 'PHP-5.4' of https://git.php.net/repository/php-src: fix cve number
| * | | fix cve numberStanislav Malyshev2013-08-161-1/+1
| | | |
* | | | With --enable-dtrace, the correct PIC/non-PIC .o files on Solaris andChristopher Jones2013-08-161-4/+38
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Linux are now used. DTrace is part of Oracle Linux. See https://oss.oracle.com/projects/DTrace/ This patch does not change DTrace linking for non-Solaris/Linux platforms. For SystemTap users on Linux, this patch removes the compilation warning: Warning: Linking the shared library libphp5.la against the non-libtool objects Zend/zend_dtrace.d.o is not portable!
* | | Merge branch 'PHP-5.4' of https://git.php.net/repository/php-src into PHP-5.4Christopher Jones2013-08-141-3/+3
|\ \ \ | | | | | | | | | | | | | | | | * 'PHP-5.4' of https://git.php.net/repository/php-src: Fixed #65431 in zend_exception.c by Sixd
| * | | Fixed #65431 in zend_exception.c by SixdXinchen Hui2013-08-151-3/+3
| | | |
* | | | Reduce (some) compile noise of 'unused variable' and 'may be used ↵Christopher Jones2013-08-1423-33/+31
|/ / / | | | | | | | | | uninitialized' warnings.
* | | Skip test if SKIP_ONLINE_TESTS setChristopher Jones2013-08-141-0/+1
| | |
* | | Merge branch 'PHP-5.3' into PHP-5.4Stanislav Malyshev2013-08-130-0/+0
|\ \ \ | |/ / | | | | | | | | | * PHP-5.3: Fix CVE-2013-4073 - handling of certs with null bytes
| * | Fix CVE-2013-4073 - handling of certs with null bytesStanislav Malyshev2013-08-134-2/+135
| | |