Skip to content
Snippets Groups Projects
Commit cf7327a2 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

FIX #5750 Bug: CmailFile::server_parse enters an infinite loop if

$server_response is false
parent 43da410b
Branches
Tags
No related merge requests found
...@@ -1110,7 +1110,7 @@ class CMailFile ...@@ -1110,7 +1110,7 @@ class CMailFile
if (! ($server_response = fgets($socket, 256)) ) if (! ($server_response = fgets($socket, 256)) )
{ {
$this->error="Couldn't get mail server response codes"; $this->error="Couldn't get mail server response codes";
$_retVal = false; return false;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment