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
amqp.inc at around ln 390
if(false == ($written = fwrite($this->sock, $data)))
should be
if(false === ($written = fwrite($this->sock, $data)))
If you're sending a large packet, fwrite may sit around (not sending data),
waiting for room to appear in the buffer. In the mean time, fwrite is
returning 0, even though there isn't an error.
(return value should be strictly false if there is an error, not 0)
Original issue reported on code.google.com by [email protected] on 12 Dec 2009 at 4:01
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 12 Dec 2009 at 4:01The text was updated successfully, but these errors were encountered: