From 326ee8c31886f616fd7da2932dd042229c7a21c3 Mon Sep 17 00:00:00 2001 From: David Garske Date: Tue, 26 Feb 2019 11:27:08 -0800 Subject: [PATCH] Revert change to PKCS12 tailList. --- wolfcrypt/src/pkcs12.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/src/pkcs12.c b/wolfcrypt/src/pkcs12.c index f974ebec1..7788ce7dd 100644 --- a/wolfcrypt/src/pkcs12.c +++ b/wolfcrypt/src/pkcs12.c @@ -1050,7 +1050,7 @@ int wc_PKCS12_parse(WC_PKCS12* pkcs12, const char* psw, /* put the new node into the list */ if (certList != NULL) { WOLFSSL_MSG("Pushing new cert onto queue"); - certList->next = node; + tailList->next = node; tailList = node; } else {