-
Notifications
You must be signed in to change notification settings - Fork 8k
PHP bug 67130: nextRowset should work with unfetched rows #2134
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
Conversation
|
/cc @adambaratz |
|
Thanks for the PR. Could you close this and create a new one against the PHP-7.0 branch? master is 7.2, which is still a ways away from being released. It would be nice to get this fix out sooner. |
|
@adambaratz Unless code has diverged, it's easy to apply PRs to a different branch by |
|
@nikic since a few weeks the person which generated the PR can also do this via webinterface on github. |
|
@staabm I tried that before (see the history on this PR) -- but this still requires rebasing the changes to a different branch first. Just changing it in the web interface will include all other commits to master in the PR as well ^^ |
fd5d8ad to
a54a450
Compare
|
Thank you for considering my PR. I have updated the base branch to PHP-7.0, please let me know if you need anything else. Peter |
|
Comment on behalf of adambaratz at php.net: Merged into PHP-7.0 and up. |
|
@adambaratz if there is a js error then please report it at bugs.php.net :) |
|
Was nothing. Just had to clear cache... |
Bug 67130: Calling nextRowset() with unfetched rows causes a segfault.
I have fixed this by fetching any unfetched rows before advancing the rowset. Attached is a test case.