#
e03480bf |
| 12-Aug-2016 |
Xinchen Hui |
Fixed bug #72813 (Segfault with __get returned by ref) This should be safe change, as we don't dereference value and member after calling setter/getter. And compare to adding un
Fixed bug #72813 (Segfault with __get returned by ref) This should be safe change, as we don't dereference value and member after calling setter/getter. And compare to adding unref codes, this is much cheaper.
show more ...
|
#
3467526a |
| 12-Aug-2016 |
Yasuo Ohgaki |
Merge RFC: Session ID without hashing https://wiki.php.net/rfc/session-id-without-hashing |
#
1dab96c1 |
| 08-Aug-2016 |
Andrea Faulds |
Show "or null" in TypeErrors for nullable arg_infos |
#
622d2f41 |
| 09-Aug-2016 |
Aaron Piotrowski |
ReflectionType improvements Added ReflectionNamedType and updated ReflectionType::__toString() |
#
283b0cc8 |
| 11-Aug-2016 |
Ville Hukkamäki |
Fix #72810. Add check for SKIP_ONLINE_TESTS |
#
197051f3 |
| 11-Aug-2016 |
Kalle Sommer Nielsen |
Remove sql.safe_mode This is one of the last old and odd deprecated settings we still have in PHP, it was never fully implemented in all the database extensions and should probably have been
Remove sql.safe_mode This is one of the last old and odd deprecated settings we still have in PHP, it was never fully implemented in all the database extensions and should probably have been gone back in 5.4, along with safe_mode. Although if my memory strikes me right, mysql was also supporting it back then, but not mysqli. So far only interbase was supporting this feature, and the removal of it causes two effects for interbase: - CREATE DATABASE is now allowed no matter - The default database set by php.ini (ibase.default_db) is no longer forced http://php.net/ini.core#ini.sql.safe-mode
show more ...
|
#
24fdffda |
| 10-Aug-2016 |
Christoph M. Becker |
Update to SQLite 3.14.0 |
#
3fcd8ac2 |
| 10-Aug-2016 |
Yasuo Ohgaki |
Fixed typo |
#
ee797e7e |
| 10-Aug-2016 |
Yasuo Ohgaki |
Update NEWS and UPGRADING |
#
087dcd93 |
| 10-Aug-2016 |
Yasuo Ohgaki |
pull-request/1100 Request #65081 mb_chr() and mb_ord() Added test cases and little optimization.
|
#
f41b69e8 |
| 09-Aug-2016 |
Keyur |
Add NEWS |
#
40059bee |
| 09-Aug-2016 |
Keyur |
Merge branch 'PHP-7.0' into PHP-7.1 * PHP-7.0: Add NEWS Fix ASSERT logic Bugfix 72791: fix memory leak in PDO persistent connections
|
#
bb955ec9 |
| 09-Aug-2016 |
Keyur |
Add NEWS |
#
ecc4025c |
| 09-Aug-2016 |
Xinchen Hui |
Update NEWS |
#
e52cb185 |
| 09-Aug-2016 |
Xinchen Hui |
Fixed bug #72788 (Invalid memory access when using persistent PDO connection) |
#
f706897f |
| 07-Aug-2016 |
Christoph M. Becker |
Implement #38992: invoke() and invokeArgs() static method calls should match We don't want ReflectionMethod::invoke() to simply ignore its first argument, if the method to invoke is a st
Implement #38992: invoke() and invokeArgs() static method calls should match We don't want ReflectionMethod::invoke() to simply ignore its first argument, if the method to invoke is a static method. Instead we match its ZPP with that of ReflectionMethod::invokeArgs(). Furthermore, we apply the DRY principle by factoring out the code to a common helper function to prevent inadvertent future divergence of the implementations of both methods. As can be seen from the necessity to adapt some test cases, this causes a BC break for some pathological cases. Therefore we apply this patch to PHP 7.1 only, which is still in beta phase.
show more ...
|
#
e52c1f3c |
| 07-Aug-2016 |
Nikita Popov |
Merge branch 'PHP-7.0' into PHP-7.1
|
#
e616bc86 |
| 03-Aug-2016 |
Lauri Kenttä |
Fix bug #55451 Make substr_compare ignore the length if it's NULL. This allows to use the last parameter (case_insensitivity) with the default length. |
#
af56fed7 |
| 07-Aug-2016 |
Kalle Sommer Nielsen |
Fixed bug #71534 (Type confusion in exif_read_data() leading to heap overflow in debug mode) Unlike the original patch, this does not return an unknown format in case an unsigned compatible
Fixed bug #71534 (Type confusion in exif_read_data() leading to heap overflow in debug mode) Unlike the original patch, this does not return an unknown format in case an unsigned compatible type cannot be found (cases for SINGLE and DOUBLE removed), as these seems rare cases according to the inline comments. Note, the test does not test if PHP is in debug mode, although the report originally states it only occurs there only. The fix is based on a patch by hlt99 at blinkenshell dot org
show more ...
|
#
fadbb30e |
| 07-Aug-2016 |
Christopher Jones |
News for 7.1 |
#
b601dc5b |
| 04-Aug-2016 |
Christopher Jones |
Fix bug #72524 (Binding null values triggers ORA-24816 error) |
#
b944a7a5 |
| 06-Aug-2016 |
Kalle Sommer Nielsen |
NEWS + UPGRADING for recent EXIF additions |
#
5e2b8349 |
| 06-Aug-2016 |
Kalle Sommer Nielsen |
Check the return value of dbconvert() in mssql_guid_string(), as it may return -1 in case the conversion failed. In that case false is returned. Also initialize buffer and buffer2 to NULL, w
Check the return value of dbconvert() in mssql_guid_string(), as it may return -1 in case the conversion failed. In that case false is returned. Also initialize buffer and buffer2 to NULL, which should fix bug #72039 (Use of uninitialised value on mssql_guid_string). This only applies to 5.6, as we do not have mssql in 7.0 anymore
show more ...
|
#
7813e9de |
| 06-Aug-2016 |
Kalle Sommer Nielsen |
Fixed bug #5453 (WSA cleanup executes before MSHUTDOWN) This moves the WSACleanup() call to after zend_shutdown() in main.c, I did some testing and I could not find any issues with this. I d
Fixed bug #5453 (WSA cleanup executes before MSHUTDOWN) This moves the WSACleanup() call to after zend_shutdown() in main.c, I did some testing and I could not find any issues with this. I don't expect this to cause any issues on Netware either, although untested as I do not have such an env available (do we even support Netware anymore? Last release was in 2009 and it is now discontinued) Besides the movie, then this commit also contains a fix to the check of WSAStartup() where we don't actually confirm we get the desired version of the winsock.dll (We use 2.0).
show more ...
|
#
be31515c |
| 05-Aug-2016 |
Nikita Popov |
Merge branch 'PHP-7.0' into PHP-7.1
|