Bug 891551 - Part 3: Fix bug where we weren't performing a null check in dtor for NrSocket (see also bug 987380). r=bwc

This commit is contained in:
Peter Tatrai 2014-05-02 10:50:00 -07:00
Родитель 15ada4c723
Коммит 042dcaf7fc
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -127,7 +127,8 @@ class NrSocket : public NrSocketBase,
public:
NrSocket() : fd_(nullptr) {}
virtual ~NrSocket() {
PR_Close(fd_);
if (fd_)
PR_Close(fd_);
}
// Implement nsASocket