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:
Andrea Marchesini 2020-06-18 15:41:36 +00:00
Родитель 0442082a5e
Коммит 0f29634160
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -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) {