Index: crypto/ec_signature_creator_nss.cc |
diff --git a/crypto/ec_signature_creator_nss.cc b/crypto/ec_signature_creator_nss.cc |
index 147535b28e9a1d3de08bec3ffa13c141c567bf6d..05230ee21b062107982a504cbf4ed22797704bf7 100644 |
--- a/crypto/ec_signature_creator_nss.cc |
+++ b/crypto/ec_signature_creator_nss.cc |
@@ -93,6 +93,7 @@ bool ECSignatureCreator::Sign(const uint8* data, |
// Copy the signed data into the output vector. |
signature->assign(result->data, result->data + result->len); |
+ SECITEM_FreeItem(result, PR_FALSE); |
agl
2012/01/31 15:40:55
Thanks for catching this, but there's an underlyin
Ryan Hamilton
2012/01/31 16:37:16
No kidding? Thanks for catching this. As per wtc
|
return true; |
} |