diff options
author | René Korthaus <[email protected]> | 2016-09-04 18:27:40 +0200 |
---|---|---|
committer | René Korthaus <[email protected]> | 2016-09-04 18:27:40 +0200 |
commit | 2a6645370d45f850351e6003bd5adc06924520c4 (patch) | |
tree | 40f2667f1a1f8839cf1256d93da95a180bd46e8f /src/lib/cert/x509 | |
parent | 2985b74307d7a8533700be7b0bc354fb4968b7d6 (diff) |
Call base class assignment operator in X509_Certificate
Diffstat (limited to 'src/lib/cert/x509')
-rw-r--r-- | src/lib/cert/x509/x509cert.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/cert/x509/x509cert.cpp b/src/lib/cert/x509/x509cert.cpp index ffedf43f0..4d9482e93 100644 --- a/src/lib/cert/x509/x509cert.cpp +++ b/src/lib/cert/x509/x509cert.cpp @@ -89,6 +89,7 @@ X509_Certificate& X509_Certificate::operator=(const X509_Certificate& other) } else { + X509_Object::operator=(other); m_subject = other.m_subject; m_issuer = other.m_issuer; m_self_signed = other.m_self_signed; |