From: Rob Percival Date: Wed, 19 Oct 2016 14:42:05 +0000 (+0100) Subject: Move SCT_LIST_free definition into a more logical place X-Git-Tag: OpenSSL_1_1_0d~121 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=56518d82372048825f068de32dfca77c32be1bc0;p=openssl Move SCT_LIST_free definition into a more logical place This reflects its position in include/openssl/ct.h. Reviewed-by: Tim Hudson Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/1548) (cherry picked from commit e1940e9f7a73bf3a560fbe3550a9b69a612118ec) --- diff --git a/crypto/ct/ct_oct.c b/crypto/ct/ct_oct.c index cacc3bd2b4..d3edd39f5d 100644 --- a/crypto/ct/ct_oct.c +++ b/crypto/ct/ct_oct.c @@ -254,11 +254,6 @@ err: return -1; } -void SCT_LIST_free(STACK_OF(SCT) *a) -{ - sk_SCT_pop_free(a, SCT_free); -} - STACK_OF(SCT) *o2i_SCT_LIST(STACK_OF(SCT) **a, const unsigned char **pp, size_t len) { diff --git a/crypto/ct/ct_sct.c b/crypto/ct/ct_sct.c index 92cee8d587..cd2cf60967 100644 --- a/crypto/ct/ct_sct.c +++ b/crypto/ct/ct_sct.c @@ -45,6 +45,11 @@ void SCT_free(SCT *sct) OPENSSL_free(sct); } +void SCT_LIST_free(STACK_OF(SCT) *a) +{ + sk_SCT_pop_free(a, SCT_free); +} + int SCT_set_version(SCT *sct, sct_version_t version) { if (version != SCT_VERSION_V1) {