aboutsummaryrefslogtreecommitdiffstats
path: root/src/charon/lib/crypto/x509.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/charon/lib/crypto/x509.c')
-rwxr-xr-xsrc/charon/lib/crypto/x509.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/charon/lib/crypto/x509.c b/src/charon/lib/crypto/x509.c
index 91f9f191e..6a9afcea5 100755
--- a/src/charon/lib/crypto/x509.c
+++ b/src/charon/lib/crypto/x509.c
@@ -874,9 +874,9 @@ x509_t *x509_create_from_chunk(chunk_t chunk)
this->public_key = NULL;
this->subject = NULL;
this->issuer = NULL;
- this->subjectAltNames = linked_list_create(this->subjectAltNames);
- this->issuerAltNames = linked_list_create(this->issuerAltNames);
- this->crlDistributionPoints = linked_list_create(this->crlDistributionPoints);
+ this->subjectAltNames = linked_list_create();
+ this->issuerAltNames = linked_list_create();
+ this->crlDistributionPoints = linked_list_create();
/* we do not use a per-instance logger right now, since its not always accessible */
logger = logger_manager->get_logger(logger_manager, ASN1);