From 522f365279b293b8756e364ae53ee0f91edcba78 Mon Sep 17 00:00:00 2001 From: David Garske Date: Wed, 20 Jun 2018 17:33:09 -0700 Subject: [PATCH] Fix one more issue with PKCS7 and async, which is not supported. --- tests/api.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/api.c b/tests/api.c index baec67e45..253448fbd 100644 --- a/tests/api.c +++ b/tests/api.c @@ -14464,6 +14464,7 @@ static void test_wc_PKCS7_EncodeSignedData (void) pkcs7.encryptOID = RSAk; pkcs7.hashOID = SHAh; pkcs7.rng = &rng; + pkcs7.devId = INVALID_DEVID; AssertIntGT(wc_PKCS7_EncodeSignedData(&pkcs7, output, outputSz), 0);