]>
granicus.if.org Git - php/log
Remi Collet [Mon, 27 Oct 2014 06:53:54 +0000 (07:53 +0100)]
Merge branch 'PHP-5.6'
* PHP-5.6:
NEWS
NEWS
Fix bug #63595 GMP memory management conflicts with other libraries using GMP
Conflicts:
ext/gmp/gmp.c
Remi Collet [Mon, 27 Oct 2014 06:51:50 +0000 (07:51 +0100)]
NEWS
Remi Collet [Mon, 27 Oct 2014 06:50:42 +0000 (07:50 +0100)]
Merge branch 'PHP-5.5' into PHP-5.6
* PHP-5.5:
NEWS
Fix bug #63595 GMP memory management conflicts with other libraries using GMP
Conflicts:
ext/gmp/gmp.c
Remi Collet [Mon, 27 Oct 2014 06:47:18 +0000 (07:47 +0100)]
NEWS
Remi Collet [Mon, 27 Oct 2014 06:45:34 +0000 (07:45 +0100)]
Fix bug #63595 GMP memory management conflicts with other libraries using GMP
Drop use of php memory allocators as this raise various conflicts
with other extensions and libraries which use libgmp.
No other solution found.
We cannot for ensure correct use of allocator with shared lib.
Some memory can allocated before php init
Some memory can be freed after php shutdown
Known broken run cases
- php + curl + gnutls + gmp
- mod_gnutls + mod_php + gnutls + gmp
- php + freetds + gnutls + gmp
- php + odbc + freetds + gnutls + gmp
- php + php-mapi (zarafa) + gnutls + gmp
Rasmus Lerdorf [Sun, 26 Oct 2014 23:59:17 +0000 (16:59 -0700)]
Fix off-by-one here
Rasmus Lerdorf [Sun, 26 Oct 2014 23:58:45 +0000 (16:58 -0700)]
Merge branch 'master' of git.php.net:php-src
* 'master' of git.php.net:php-src: (240 commits)
Do not execute anything after quit or clean command
Fix last commit, and do not output unnecessary information
Stabilize execution, always run destructors and extended file breakpoints
Fix nullptr dereference in clean without exec context
remove dodgy param parser, bring userland breakpoint api inline with PHP7
disable output buffering by default
Add question to reset execution in run/exec/clean
- Updated to version 2014.9 (2014i)
actually remove this
disable output buffering, better breakpoint api for userland, remove hand parsing of params
Fix phpdbg output when outputting via php with active output handlers
Fixed Closure::call() NEWS/UPGRADING
Set engine back to initial state after fatal-ed ev command
Fix eventual stack overflow after clean cmd
Fix listing of files with no absolute path
updated libmagic.patch in master
updated libmagic.patch in 5.6
updated libmagic.patch in 5.5
NEWS
NEWS
...
Bob Weinand [Sun, 26 Oct 2014 23:34:56 +0000 (00:34 +0100)]
Merge remote-tracking branch 'origin/PHP-5.6'
Conflicts:
sapi/phpdbg/phpdbg.c
sapi/phpdbg/phpdbg_bp.c
sapi/phpdbg/phpdbg_list.c
sapi/phpdbg/phpdbg_parser.c
sapi/phpdbg/phpdbg_parser.h
sapi/phpdbg/phpdbg_prompt.c
Bob Weinand [Sun, 26 Oct 2014 22:33:54 +0000 (23:33 +0100)]
Do not execute anything after quit or clean command
Bob Weinand [Sun, 26 Oct 2014 21:21:18 +0000 (22:21 +0100)]
Fix last commit, and do not output unnecessary information
Bob Weinand [Sun, 26 Oct 2014 19:43:49 +0000 (20:43 +0100)]
Stabilize execution, always run destructors and extended file breakpoints
Bob Weinand [Sun, 26 Oct 2014 09:48:45 +0000 (10:48 +0100)]
Fix nullptr dereference in clean without exec context
krakjoe [Sun, 26 Oct 2014 07:24:35 +0000 (07:24 +0000)]
remove dodgy param parser, bring userland breakpoint api inline with PHP7
krakjoe [Sun, 26 Oct 2014 07:08:29 +0000 (07:08 +0000)]
disable output buffering by default
Bob Weinand [Sun, 26 Oct 2014 02:50:28 +0000 (03:50 +0100)]
Add question to reset execution in run/exec/clean
Derick Rethans [Sun, 26 Oct 2014 15:07:48 +0000 (11:07 -0400)]
Merge branch 'PHP-5.6'
Derick Rethans [Sun, 26 Oct 2014 14:54:09 +0000 (10:54 -0400)]
Merge branch 'PHP-5.5' into PHP-5.6
Derick Rethans [Sun, 26 Oct 2014 14:54:07 +0000 (10:54 -0400)]
- Updated to version 2014.9 (2014i)
krakjoe [Sun, 26 Oct 2014 07:05:55 +0000 (07:05 +0000)]
actually remove this
krakjoe [Sun, 26 Oct 2014 07:02:15 +0000 (07:02 +0000)]
disable output buffering, better breakpoint api for userland, remove hand parsing of params
Bob Weinand [Sat, 25 Oct 2014 17:09:19 +0000 (19:09 +0200)]
Merge remote-tracking branch 'origin/PHP-5.6'
Conflicts:
sapi/phpdbg/phpdbg.c
sapi/phpdbg/phpdbg_list.c
Bob Weinand [Sat, 25 Oct 2014 16:59:48 +0000 (18:59 +0200)]
Merge phpdbg into PHP-5.6
Bob Weinand [Sat, 25 Oct 2014 16:48:43 +0000 (18:48 +0200)]
Fix phpdbg output when outputting via php with active output handlers
Andrea Faulds [Sat, 25 Oct 2014 16:06:11 +0000 (17:06 +0100)]
Merge branch 'Closure_apply'
* Closure_apply:
Fixed Closure::call() NEWS/UPGRADING
Andrea Faulds [Sat, 25 Oct 2014 16:05:52 +0000 (17:05 +0100)]
Fixed Closure::call() NEWS/UPGRADING
Bob Weinand [Sat, 25 Oct 2014 13:29:54 +0000 (15:29 +0200)]
Set engine back to initial state after fatal-ed ev command
Bob Weinand [Sat, 25 Oct 2014 13:28:41 +0000 (15:28 +0200)]
Fix eventual stack overflow after clean cmd
Bob Weinand [Sat, 25 Oct 2014 13:06:34 +0000 (15:06 +0200)]
Fix listing of files with no absolute path
Anatol Belski [Sat, 25 Oct 2014 10:06:17 +0000 (12:06 +0200)]
updated libmagic.patch in master
Anatol Belski [Sat, 25 Oct 2014 10:05:34 +0000 (12:05 +0200)]
Merge branch 'PHP-5.6'
* PHP-5.6:
updated libmagic.patch in 5.6
updated libmagic.patch in 5.5
Anatol Belski [Sat, 25 Oct 2014 10:04:27 +0000 (12:04 +0200)]
Merge branch 'PHP-5.5' into PHP-5.6
* PHP-5.5:
updated libmagic.patch in 5.5
Anatol Belski [Sat, 25 Oct 2014 10:03:49 +0000 (12:03 +0200)]
updated libmagic.patch in 5.6
Anatol Belski [Sat, 25 Oct 2014 10:01:58 +0000 (12:01 +0200)]
updated libmagic.patch in 5.5
Remi Collet [Sat, 25 Oct 2014 09:31:54 +0000 (11:31 +0200)]
Merge branch 'PHP-5.6'
* PHP-5.6:
NEWS
NEWS
Fix bug #68283: fileinfo: out-of-bounds read in elf note headers
Remi Collet [Sat, 25 Oct 2014 09:30:53 +0000 (11:30 +0200)]
NEWS
Remi Collet [Sat, 25 Oct 2014 09:30:29 +0000 (11:30 +0200)]
Merge branch 'PHP-5.5' into PHP-5.6
* PHP-5.5:
NEWS
Fix bug #68283: fileinfo: out-of-bounds read in elf note headers
Remi Collet [Sat, 25 Oct 2014 09:29:53 +0000 (11:29 +0200)]
NEWS
Remi Collet [Wed, 22 Oct 2014 13:37:04 +0000 (15:37 +0200)]
Fix bug #68283: fileinfo: out-of-bounds read in elf note headers
Upstream commit
https://github.com/file/file/commit/
39c7ac1106be844a5296d3eb5971946cc09ffda0
CVE -2014-3710
(cherry picked from commit
1803228597e82218a8c105e67975bc50e6f5bf0d )
STANLEY SUFFICOOL [Sat, 25 Oct 2014 03:30:18 +0000 (20:30 -0700)]
Update PDO_DBLIB README file
STANLEY SUFFICOOL [Sat, 25 Oct 2014 03:10:04 +0000 (20:10 -0700)]
Fixed Bug #52885 - PDO_DBLIB: Binary data may be truncated
Data containing characters in conflict with the server
codepage or containing null char will throw an error.
Implement binary quoting to allow binding of binary values.
STANLEY SUFFICOOL [Sat, 25 Oct 2014 03:00:48 +0000 (20:00 -0700)]
Merge branch 'master' of https://git.php.net/push/php-src
* 'master' of https://git.php.net/push/php-src: (164 commits)
refix the broken place
fix infinite loop
fix datatype mismatch warnings
fix datatype mismatches
fix datatype mismatches
fix datatype mismatches
fix datatype mismatch warnings
fix datatype mismatch warnings
fix datatype mismatch warnings
fix datatype mismatch warning
fix datatype mismatches
fix datatype mismatch warnings
Re-add phpdbg to travis
Added some NEWS
Make xml valid (missing space between attrs)
Fix info classes file name in xml
Add note about <eval> tag for errors in xml.md
Name the tag <eval> if the error id during ev cmd
Do not print out xml as PHP print...
Fix output to wrong function
...
Anatol Belski [Sat, 25 Oct 2014 00:13:44 +0000 (02:13 +0200)]
refix the broken place
typecast from signed to unsigned of a bigger size
Anatol Belski [Fri, 24 Oct 2014 22:32:45 +0000 (00:32 +0200)]
fix infinite loop
Anatol Belski [Fri, 24 Oct 2014 18:57:38 +0000 (20:57 +0200)]
fix datatype mismatch warnings
Anatol Belski [Fri, 24 Oct 2014 18:49:32 +0000 (20:49 +0200)]
fix datatype mismatches
Anatol Belski [Fri, 24 Oct 2014 18:47:26 +0000 (20:47 +0200)]
fix datatype mismatches
and convert APIs to size_t where zend_string internally used
Anatol Belski [Fri, 24 Oct 2014 18:35:28 +0000 (20:35 +0200)]
fix datatype mismatches
and convert len args to size_t where the underlaying API uses zend_string
Anatol Belski [Fri, 24 Oct 2014 18:27:56 +0000 (20:27 +0200)]
fix datatype mismatch warnings
Anatol Belski [Fri, 24 Oct 2014 11:20:55 +0000 (13:20 +0200)]
fix datatype mismatch warnings
Anatol Belski [Fri, 24 Oct 2014 11:12:59 +0000 (13:12 +0200)]
fix datatype mismatch warnings
Anatol Belski [Fri, 24 Oct 2014 11:00:33 +0000 (13:00 +0200)]
fix datatype mismatch warning
Anatol Belski [Fri, 24 Oct 2014 08:09:46 +0000 (10:09 +0200)]
fix datatype mismatches
Anatol Belski [Fri, 24 Oct 2014 07:22:51 +0000 (09:22 +0200)]
fix datatype mismatch warnings
Bob Weinand [Fri, 24 Oct 2014 17:32:35 +0000 (19:32 +0200)]
Re-add phpdbg to travis
Bob Weinand [Fri, 24 Oct 2014 17:29:50 +0000 (19:29 +0200)]
Made phpdbg compatible with new engine
Bob Weinand [Fri, 24 Oct 2014 17:26:04 +0000 (19:26 +0200)]
Added some NEWS
Bob Weinand [Fri, 24 Oct 2014 17:22:45 +0000 (19:22 +0200)]
Merge phpdbg into PHP-5.6
Bob Weinand [Fri, 24 Oct 2014 12:42:18 +0000 (14:42 +0200)]
Make xml valid (missing space between attrs)
Bob Weinand [Fri, 24 Oct 2014 12:29:06 +0000 (14:29 +0200)]
Fix info classes file name in xml
Bob Weinand [Fri, 24 Oct 2014 12:18:02 +0000 (14:18 +0200)]
Add note about <eval> tag for errors in xml.md
Bob Weinand [Fri, 24 Oct 2014 12:16:49 +0000 (14:16 +0200)]
Name the tag <eval> if the error id during ev cmd
Bob Weinand [Fri, 24 Oct 2014 11:11:14 +0000 (13:11 +0200)]
Do not print out xml as PHP print...
Bob Weinand [Fri, 24 Oct 2014 10:55:44 +0000 (12:55 +0200)]
Fix output to wrong function
Bob Weinand [Fri, 24 Oct 2014 10:32:48 +0000 (12:32 +0200)]
Fixed parameter order on %.*s
Bob Weinand [Thu, 23 Oct 2014 18:14:12 +0000 (20:14 +0200)]
Too much copypaste...
Bob Weinand [Thu, 23 Oct 2014 15:19:26 +0000 (17:19 +0200)]
Add xml formatted deep dump of return value from ev
Anatol Belski [Thu, 23 Oct 2014 14:50:35 +0000 (16:50 +0200)]
rework the previous fix for var names with size_t, no ugly casts anymore
Anatol Belski [Thu, 23 Oct 2014 14:49:47 +0000 (16:49 +0200)]
add include for usleep() proto
Anatol Belski [Thu, 23 Oct 2014 14:38:25 +0000 (16:38 +0200)]
fix datatype mismatches
Anatol Belski [Thu, 23 Oct 2014 14:31:19 +0000 (16:31 +0200)]
fix datatype mismatch
Anatol Belski [Thu, 23 Oct 2014 14:29:02 +0000 (16:29 +0200)]
fix datatype mismatches
Anatol Belski [Thu, 23 Oct 2014 14:22:20 +0000 (16:22 +0200)]
fix datatype mismatches
Anatol Belski [Thu, 23 Oct 2014 12:36:55 +0000 (14:36 +0200)]
fix pack64.phpt related fail on win64
Anatol Belski [Thu, 23 Oct 2014 11:30:24 +0000 (13:30 +0200)]
fix datatype mismatches
Anatol Belski [Thu, 23 Oct 2014 10:41:11 +0000 (12:41 +0200)]
fix datatype mismatch
Anatol Belski [Thu, 23 Oct 2014 10:39:31 +0000 (12:39 +0200)]
exhaust zend_long/size_t potential in levenstein
Bob Weinand [Thu, 23 Oct 2014 11:23:37 +0000 (13:23 +0200)]
Fix some compiler warnings
Bob Weinand [Thu, 23 Oct 2014 11:16:00 +0000 (13:16 +0200)]
Move phpdbg_print and helper functions to phpdbg_out.*
Bob Weinand [Thu, 23 Oct 2014 11:02:50 +0000 (13:02 +0200)]
Do not use int8_t when it is useless...
Dmitry Stogov [Thu, 23 Oct 2014 10:50:57 +0000 (14:50 +0400)]
Fixed "instanceof" with undefined classes
Bob Weinand [Thu, 23 Oct 2014 10:38:35 +0000 (12:38 +0200)]
Fixed frame numbering in xml output
Bob Weinand [Thu, 23 Oct 2014 10:23:48 +0000 (12:23 +0200)]
Do not display dots in xml output for i v/i d
Anatol Belski [Thu, 23 Oct 2014 09:45:44 +0000 (11:45 +0200)]
fix datatype mismatches
Anatol Belski [Thu, 23 Oct 2014 09:36:34 +0000 (11:36 +0200)]
fix datatype mismatches
Anatol Belski [Thu, 23 Oct 2014 09:05:47 +0000 (11:05 +0200)]
fix datatype mismatches
Anatol Belski [Thu, 23 Oct 2014 08:29:25 +0000 (10:29 +0200)]
fix datatype mismatches
Anatol Belski [Thu, 23 Oct 2014 08:24:16 +0000 (10:24 +0200)]
fix datatype mismatches
Anatol Belski [Thu, 23 Oct 2014 08:18:59 +0000 (10:18 +0200)]
fix datatype mismatches
Anatol Belski [Thu, 23 Oct 2014 07:52:54 +0000 (09:52 +0200)]
fix datatype mismatches
Anatol Belski [Thu, 23 Oct 2014 07:45:11 +0000 (09:45 +0200)]
fix datatype mismatch
Anatol Belski [Thu, 23 Oct 2014 07:42:46 +0000 (09:42 +0200)]
fix datatype mismatches
Anatol Belski [Thu, 23 Oct 2014 07:19:46 +0000 (09:19 +0200)]
fix datatype mismatch
Anatol Belski [Thu, 23 Oct 2014 07:17:36 +0000 (09:17 +0200)]
fix datatype mismatch
Anatol Belski [Thu, 23 Oct 2014 07:06:33 +0000 (09:06 +0200)]
move the more common case up
Anatol Belski [Thu, 23 Oct 2014 06:58:29 +0000 (08:58 +0200)]
catch up with the latest key length change
Anatol Belski [Thu, 23 Oct 2014 06:52:59 +0000 (08:52 +0200)]
move key lengths to use size_t as zend_string is used internally anyway
Dmitry Stogov [Thu, 23 Oct 2014 07:52:34 +0000 (11:52 +0400)]
Embed FETCH_CLASS <string> into the following NEW
STANLEY SUFFICOOL [Thu, 23 Oct 2014 06:20:26 +0000 (23:20 -0700)]
Merge branch 'master' of https://git.php.net/push/php-src
* 'master' of https://git.php.net/push/php-src:
Implement Bug #66063 - pdo_dblib enable timeout parameter
STANLEY SUFFICOOL [Thu, 23 Oct 2014 06:14:23 +0000 (23:14 -0700)]
Implement Bug #66062 - pdo_dblib enable timeout parameter
STANLEY SUFFICOOL [Thu, 23 Oct 2014 06:14:23 +0000 (23:14 -0700)]
Implement Bug #66063 - pdo_dblib enable timeout parameter