Index: crypto/rsa_private_key.cc |
diff --git a/crypto/rsa_private_key.cc b/crypto/rsa_private_key.cc |
index bca4b24015cc3b3ecd0f4f1a8c14b39c8db0ca84..772f51fad56e52e980230fb45f60998bee00efe5 100644 |
--- a/crypto/rsa_private_key.cc |
+++ b/crypto/rsa_private_key.cc |
@@ -87,6 +87,7 @@ RSAPrivateKey* RSAPrivateKey::Copy() const { |
} |
bool RSAPrivateKey::ExportPrivateKey(std::vector<uint8_t>* output) const { |
+ OpenSSLErrStackTracer err_tracer(FROM_HERE); |
uint8_t *der; |
size_t der_len; |
AutoCBB cbb; |
@@ -101,6 +102,7 @@ bool RSAPrivateKey::ExportPrivateKey(std::vector<uint8_t>* output) const { |
} |
bool RSAPrivateKey::ExportPublicKey(std::vector<uint8_t>* output) const { |
+ OpenSSLErrStackTracer err_tracer(FROM_HERE); |
uint8_t *der; |
size_t der_len; |
AutoCBB cbb; |