X-Git-Url: https://git.openssl.org/gitweb/?a=blobdiff_plain;f=apps%2Fspkac.c;h=ad45c2ddb7779df59f699ff3712a065f1c6e406c;hb=5d1a5ddb65ce6a3b3e5027b5514db13f829a3a68;hp=b35354a8d795a82e5ea0b86f105d0d4d3e268cb8;hpb=a3fe382e2d2d794c598921cd39117581a2a8941b;p=openssl.git diff --git a/apps/spkac.c b/apps/spkac.c index b35354a8d7..ad45c2ddb7 100644 --- a/apps/spkac.c +++ b/apps/spkac.c @@ -63,8 +63,10 @@ #include #include "apps.h" #include +#include #include #include +#include #include #include @@ -198,7 +200,7 @@ bad: goto end; } BIO_printf(out, "SPKAC=%s\n", spkstr); - Free(spkstr); + OPENSSL_free(spkstr); ret = 0; goto end; } @@ -269,6 +271,6 @@ end: BIO_free(out); BIO_free(key); EVP_PKEY_free(pkey); - if(passin) Free(passin); + if(passin) OPENSSL_free(passin); EXIT(ret); }