You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
I just got a case where a line as follows: [LIST (\HasNoChildren) "/" {54} caused the while loop to run indefinitely.
I suspect ist this space character appended, which will cause the while (($pos = strpos($line, ' ')) !== false) { to run indefinitely? Not a nice thing to happen ^^ .
Im guessing {54} is a prefix to say that the next 54 Characters could contain special chars: (in my case Aufgaben/to dos/Landingpage "meine Immobilie im Alter". It probably meant the quotes.
It seams to work when I remove the space on L217.
The text was updated successfully, but these errors were encountered:
I just got a case where a line as follows:
[LIST (\HasNoChildren) "/" {54}
caused the while loop to run indefinitely.I suspect ist this space character appended, which will cause the
while (($pos = strpos($line, ' ')) !== false) {
to run indefinitely? Not a nice thing to happen ^^ .zend-mail/src/Protocol/Imap.php
Line 217 in ece418b
Im guessing
{54}
is a prefix to say that the next 54 Characters could contain special chars: (in my caseAufgaben/to dos/Landingpage "meine Immobilie im Alter"
. It probably meant the quotes.It seams to work when I remove the space on L217.
The text was updated successfully, but these errors were encountered: