diff options
author | Richard Levitte <levitte@openssl.org> | 2019-07-26 18:11:55 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2019-09-12 18:34:06 +0200 |
commit | e5d4233fbd07eac52227c7ec5f479a46f15914bf (patch) | |
tree | b1721a511174bca38d434ea844baae1187e30d38 /fuzz/bndiv.c | |
parent | 14e275e8fb736be4ea83441b630515f7be97d06b (diff) | |
download | openssl-new-e5d4233fbd07eac52227c7ec5f479a46f15914bf.tar.gz |
Deprecate ERR_get_state()
Internally, we still need this function, so we make it internal and
then add a new ERR_get_state() that simply calls the internal variant,
unless it's "removed" by configuration.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9462)
Diffstat (limited to 'fuzz/bndiv.c')
-rw-r--r-- | fuzz/bndiv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzz/bndiv.c b/fuzz/bndiv.c index 70636d4fee..d9467b5e8b 100644 --- a/fuzz/bndiv.c +++ b/fuzz/bndiv.c @@ -38,7 +38,7 @@ int FuzzerInitialize(int *argc, char ***argv) ctx = BN_CTX_new(); OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL); - ERR_get_state(); + ERR_clear_error(); return 1; } |