Skip to content

Commit f123966

Browse files
authored
Merge pull request #177 from c-jimenez/fix/certificate_copy
[x509] Add missing initializer for issuer DER in certificate copy constructor
2 parents 9022885 + 9d53e45 commit f123966

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/tools/x509/Certificate.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ Certificate::Certificate(const Certificate& copy)
8888
m_validity_to(copy.m_validity_to),
8989
m_issuer(copy.m_issuer),
9090
m_issuer_string(copy.m_issuer_string),
91+
m_issuer_der(copy.m_issuer_der),
9192
m_is_self_signed(copy.m_is_self_signed)
9293
{
9394
// Duplicate OpenSSL object

0 commit comments

Comments
 (0)