Bug 1058331: Plug a leak in TransportLayerDtls::Setup, and remove a suppression. r=mt

This commit is contained in:
Byron Campen [:bwc] 2014-08-25 17:15:07 -07:00
parent 52313e00a3
commit e0a75522b5

View File

@ -118,7 +118,7 @@ int32_t TransportLayerNSPRAdapter::Write(const void *buf, int32_t length) {
// Implementation of NSPR methods
static PRStatus TransportLayerClose(PRFileDesc *f) {
f->secret = nullptr;
f->dtor(f);
return PR_SUCCESS;
}