From: Richard Levitte Date: Wed, 18 Oct 2000 19:36:27 +0000 (+0000) Subject: John Denney reports that we forgot to convert X-Git-Tag: BEFORE_engine~33 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef0ab7f94f29ae82c409a8c090d5787e8351be27;p=openssl John Denney reports that we forgot to convert Free to OPENSSL_free in the SSL demos. --- diff --git a/demos/ssl/cli.cpp b/demos/ssl/cli.cpp index daea2bd9c7..49cba5da0c 100644 --- a/demos/ssl/cli.cpp +++ b/demos/ssl/cli.cpp @@ -79,12 +79,12 @@ void main () str = X509_NAME_oneline (X509_get_subject_name (server_cert),0,0); CHK_NULL(str); printf ("\t subject: %s\n", str); - Free (str); + OPENSSL_free (str); str = X509_NAME_oneline (X509_get_issuer_name (server_cert),0,0); CHK_NULL(str); printf ("\t issuer: %s\n", str); - Free (str); + OPENSSL_free (str); /* We could do all sorts of certificate verification stuff here before deallocating the certificate. */ diff --git a/demos/ssl/inetdsrv.cpp b/demos/ssl/inetdsrv.cpp index 5b09227210..efd70d2771 100644 --- a/demos/ssl/inetdsrv.cpp +++ b/demos/ssl/inetdsrv.cpp @@ -65,12 +65,12 @@ void main () str = X509_NAME_oneline (X509_get_subject_name (client_cert)); CHK_NULL(str); fprintf (log, "\t subject: %s\n", str); - Free (str); + OPENSSL_free (str); str = X509_NAME_oneline (X509_get_issuer_name (client_cert)); CHK_NULL(str); fprintf (log, "\t issuer: %s\n", str); - Free (str); + OPENSSL_free (str); /* We could do all sorts of certificate verification stuff here before deallocating the certificate. */ diff --git a/demos/ssl/serv.cpp b/demos/ssl/serv.cpp index aec610d018..b142c758d2 100644 --- a/demos/ssl/serv.cpp +++ b/demos/ssl/serv.cpp @@ -121,12 +121,12 @@ void main () str = X509_NAME_oneline (X509_get_subject_name (client_cert), 0, 0); CHK_NULL(str); printf ("\t subject: %s\n", str); - Free (str); + OPENSSL_free (str); str = X509_NAME_oneline (X509_get_issuer_name (client_cert), 0, 0); CHK_NULL(str); printf ("\t issuer: %s\n", str); - Free (str); + OPENSSL_free (str); /* We could do all sorts of certificate verification stuff here before deallocating the certificate. */