From bd7b57783d65c8371d5e094efd6baebcbe0b8874 Mon Sep 17 00:00:00 2001 From: Guido Vranken Date: Mon, 7 Jun 2021 03:20:16 +0200 Subject: [PATCH] Remove excess space characters --- wolfcrypt/src/asn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfcrypt/src/asn.c b/wolfcrypt/src/asn.c index b46f7812d..373c71975 100644 --- a/wolfcrypt/src/asn.c +++ b/wolfcrypt/src/asn.c @@ -17480,7 +17480,7 @@ static int DecodeResponseData(byte* source, single->next->status = (CertStatus*)XMALLOC(sizeof(CertStatus), resp->heap, DYNAMIC_TYPE_OCSP_STATUS); - if ( single->next->status == NULL ) { + if (single->next->status == NULL) { XFREE(single->next, resp->heap, DYNAMIC_TYPE_OCSP_ENTRY); single->next = NULL; return MEMORY_E;