diff options
author | Vita Batrla <vitezslav.batrla@oracle.com> | 2024-06-25 11:58:49 +0200 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2024-06-27 18:26:26 +0200 |
commit | 981d129a5609ee2e031367c34c67a9f61a5bfd66 (patch) | |
tree | f2ff6caa7bb8be95b3644f50302fbd5d44c5f466 /doc/man3/TS_RESP_CTX_new.pod | |
parent | Add a test for an empty NextProto message (diff) | |
download | openssl-981d129a5609ee2e031367c34c67a9f61a5bfd66.tar.xz openssl-981d129a5609ee2e031367c34c67a9f61a5bfd66.zip |
docs: document that *_free(NULL) does nothing
Explicitly documents that *_free(NULL) does nothing.
Fixes two cases where that wasn't true.
Fixes #24675.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Sasa Nedvedicky <sashan@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/24735)
Diffstat (limited to 'doc/man3/TS_RESP_CTX_new.pod')
-rw-r--r-- | doc/man3/TS_RESP_CTX_new.pod | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/man3/TS_RESP_CTX_new.pod b/doc/man3/TS_RESP_CTX_new.pod index 725a1921d1..3b5bfc65ba 100644 --- a/doc/man3/TS_RESP_CTX_new.pod +++ b/doc/man3/TS_RESP_CTX_new.pod @@ -27,6 +27,7 @@ and property query to NULL. This results in the default (NULL) library context being used for any operations requiring algorithm fetches. TS_RESP_CTX_free() frees the B<TS_RESP_CTX> object I<ctx>. +If the argument is NULL, nothing is done. =head1 RETURN VALUES |