Skip to content
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

Fix infinite loop issue with non-closed connections #217

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Fix infinite loop issue with non-closed connections #217

wants to merge 1 commit into from

Conversation

julien731
Copy link

With some server configurations (I couldn't tell what exactly), the problem of the infinite loop caused by the use of feof() with a connection opened with fsockopen() and not being closed by the server as explained on the PHP manual page of the function happens. This results in the process not being completed, the e-mails aren't checked and it can actually lead to a 504 error.

In order to fix that, I have replaced the while loop by a do {} while(); so that the end of the resource $this->connection is actually processed and the correct value is returned, allowing the function to continue its process.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant