We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
onData can receive another frame before $onMessage completes and $this->messageBuffer gets null'd out, corrupting the messageBuffer.
onData
$onMessage
$this->messageBuffer
messageBuffer
MessageBuffer.php:99
if ($this->messageBuffer->isCoalesced()) { $msgCheck = $this->checkMessage($this->messageBuffer); if (true !== $msgCheck) { $onControl($this->newCloseFrame($msgCheck, 'Ratchet detected an invalid UTF-8 payload')); } else { $onMessage($this->messageBuffer); } $this->messageBuffer = null; ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
onData
can receive another frame before$onMessage
completes and$this->messageBuffer
gets null'd out, corrupting themessageBuffer
.MessageBuffer.php:99
The text was updated successfully, but these errors were encountered: