Skip to content

Commit 9d53e45

Browse files
committed
[x509] Add missing initializer for issuer DER in certificate copy constructor
1 parent 9022885 commit 9d53e45

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)