-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Bug #52098 for PHP7 #1539
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Bug #52098 for PHP7 #1539
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…e are not going to be removed in PHP-7.0)
…ge replaced by zval_dtor_ptr().
and also keep the indices of func_get_args(). since they are similar issue of #70574, thus reuse its test script.
* PHP-5.6: add missing header silence mkdir to fix fails after unclean test run
* PHP-5.6: Fix bug #64172 Bug #70561: Fix DirectoryIterator to throw OutOfBoundsException Conflicts: ext/pdo/pdo_dbh.c
Could you please rebase the patch? Right now it seems to be unmergeable and contains broken pieces. |
Assert that a live-range does not start, while one for the same variable is already active. To satisfy this constraint, explicitly exclude writes from JMP_SET and COALESCE. They were previously also handled correctly, because their result variable was only killed after the second write to it after the false branch. This just makes it more explicit.
This reverts commit 724e984.
This reverts commit 62062dc.
This reverts commit dfe6fda.
This reverts commit b3a4c05.
This reverts commit 404dc93.
… a part of the fix serious refactoring was done. op_array->brk_cont_array was removed, and replaced with more general and speed efficient op_array->T_liveliness. ZEND_GOTO opcode is always replaced by ZEND_JMP at compile time). (Bob, Dmitry, Laruence)" This reverts commit 5ee8413.
…rigger overloaded methods
… into bug_52098_php7 * 'bug_52098_php7' of https://github.com/kalaspuffar/php-src: (40 commits) Changes to pass all tests fix NEWS fix test bump versions Added fallback for get_method so we run the standard get_method and trigger overloaded methods fix regressio introduce in 22e23e7 bump release version sync NEWS bump version update NEWS Fixed bug #70293 (Crash with specific assertions and zend.assertions=-1) Fixed memleak in Zend/tests/bug39297 add NEWS entry Fixed bug #70288 (Apache crash related to ZEND_SEND_REF) sync NEWS bump versions sync NEWS sync NEWS set versions fix merge mistake ...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Tried to solve bug #52098 by adding a fallback so the get_method handler of the class also runs the standard get_method handler and returns the result of this call when a database function could not be found.