зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1646273 - Add a nullptr check in ns_socket_tcp before sending data, r=bwc
Differential Revision: https://phabricator.services.mozilla.com/D79950
This commit is contained in:
Родитель
0442082a5e
Коммит
0f29634160
|
@ -156,6 +156,10 @@ int NrTcpSocket::write(const void* aBuffer, size_t aCount, size_t* aWrote) {
|
|||
return R_FAILED;
|
||||
}
|
||||
|
||||
if (NS_WARN_IF(!mWebrtcTCPSocket)) {
|
||||
return R_FAILED;
|
||||
}
|
||||
|
||||
*aWrote = aCount;
|
||||
|
||||
if (aCount > 0) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче