From 770c6b589f3ad9fb6896471fd282bdafaca25c71 Mon Sep 17 00:00:00 2001 From: kaleb-himes Date: Tue, 4 May 2021 10:23:35 -0600 Subject: [PATCH] Remove unused variables --- pk/test_cert_and_private_keypair/test-cert-privkey-pair.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pk/test_cert_and_private_keypair/test-cert-privkey-pair.c b/pk/test_cert_and_private_keypair/test-cert-privkey-pair.c index 862f63de..723d6686 100644 --- a/pk/test_cert_and_private_keypair/test-cert-privkey-pair.c +++ b/pk/test_cert_and_private_keypair/test-cert-privkey-pair.c @@ -39,10 +39,8 @@ int main(int argc, char** argv) { WOLFSSL_CTX* ctx; int ret; - char serverKeyFile[LARGEST_FILE_PATH] = {0}; - char serverCertFile[LARGEST_FILE_PATH] = {0}; - char* svrKeyFile = serverKeyFile; - char* svrCertFile = serverCertFile; + char* svrKeyFile = NULL; + char* svrCertFile = NULL; if (argc == 3) { (void) svrKeyFile;