-
Notifications
You must be signed in to change notification settings - Fork 7.8k
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
ext/standard/dir.c: Refactor implementation of Directory and dir functions #18088
base: master
Are you sure you want to change the base?
Conversation
8e48e3d
to
e2565cf
Compare
ext/standard/dir.c
Outdated
{ | ||
zval *handle_zv = Z_DIRECTORY_HANDLE_P(this_z); | ||
if (UNEXPECTED(Z_TYPE_P(handle_zv) != IS_RESOURCE)) { | ||
zend_throw_error(NULL, "internal directory stream has been altered"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be a type error (same below)? Doesn't matter much.
Also shouldn't the error messages start with capital letter (as they're not argument errors)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know if this should be a TypeError, as normally a non-initialized object is an Error
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It doesn't matter much, fine by me.
CI failures are legit |
No description provided.