diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-04-16 19:16:33 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-04-16 19:16:33 +0000 |
commit | b0d2f6cd740d1bdc304e43777df3445f91d1171f (patch) | |
tree | 2a27833a01471cebd746cb19eaef063a5d3c7b85 | |
parent | 368fa413cb0ef58b05ac214c27810b5bf54aa7dc (diff) |
Garbage collect the now unused obfuscating macro string_stack_free()
-rw-r--r-- | lib/libcrypto/x509/x509_vpm.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libcrypto/x509/x509_vpm.c b/lib/libcrypto/x509/x509_vpm.c index 86176118f7e..9ac3f929dc1 100644 --- a/lib/libcrypto/x509/x509_vpm.c +++ b/lib/libcrypto/x509/x509_vpm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x509_vpm.c,v 1.35 2023/04/16 19:15:31 tb Exp $ */ +/* $OpenBSD: x509_vpm.c,v 1.36 2023/04/16 19:16:32 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2004. */ @@ -84,9 +84,6 @@ str_free(char *s) free(s); } -#define string_stack_free(sk) sk_OPENSSL_STRING_pop_free(sk, str_free) - - /* * Post 1.0.1 sk function "deep_copy". For the moment we simply make * these take void * and use them directly without a glorious blob of |