Revert change to PKCS12 tailList.

This commit is contained in:
David Garske
2019-02-26 11:27:08 -08:00
parent 38303cf27b
commit 326ee8c318

View File

@@ -1050,7 +1050,7 @@ int wc_PKCS12_parse(WC_PKCS12* pkcs12, const char* psw,
/* put the new node into the list */ /* put the new node into the list */
if (certList != NULL) { if (certList != NULL) {
WOLFSSL_MSG("Pushing new cert onto queue"); WOLFSSL_MSG("Pushing new cert onto queue");
certList->next = node; tailList->next = node;
tailList = node; tailList = node;
} }
else { else {