From f254a002a83a7044ed652b0fbea313b3d5e54794 Mon Sep 17 00:00:00 2001 From: Jacob Barthelmeh Date: Mon, 10 Apr 2017 17:32:11 -0600 Subject: [PATCH] fix small stack with X509 print function --- src/ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssl.c b/src/ssl.c index 6479eab9f..9c4e2a104 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -15241,7 +15241,7 @@ static void ExternalFreeX509(WOLFSSL_X509* x509) /* print issuer */ { char* issuer; - #ifndef WOLFSSL_SMALL_STACK + #ifdef WOLFSSL_SMALL_STACK char* buff = NULL; int issSz = 0; #else