X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=doc%2Fcrypto%2FOPENSSL_secure_malloc.pod;h=3423eb0413080f8ad82cd459828b28a883cb6319;hp=a055f1dc952d29dd5c4b13d506e2b57e25b49123;hb=fa9bb6201e1d16ba8ccab938833d140ef81a7f73;hpb=05c7b1631b4f6884b9ef5f0943a3d16d36383f52 diff --git a/doc/crypto/OPENSSL_secure_malloc.pod b/doc/crypto/OPENSSL_secure_malloc.pod index a055f1dc95..3423eb0413 100644 --- a/doc/crypto/OPENSSL_secure_malloc.pod +++ b/doc/crypto/OPENSSL_secure_malloc.pod @@ -25,7 +25,7 @@ CYRPTO_secure_malloc_used - secure heap storage void *CRYPTO_secure_zalloc(int num, const char *file, int line); void OPENSSL_secure_free(void* ptr); - void CRYPTO_secure_free(void *ptr); + void CRYPTO_secure_free(void *ptr, const char *, int); size_t OPENSSL_secure_actual_size(const void *ptr); int OPENSSL_secure_allocated(const void *ptr); @@ -74,7 +74,8 @@ OPENSSL_secure_malloc(). If CRYPTO_secure_malloc_init() is not called, this is equivalent to calling OPENSSL_free(). It exists for consistency with OPENSSL_secure_malloc() , and -is a macro that expands to CRYPTO_secure_free(). +is a macro that expands to CRYPTO_secure_free() and adds the C<__FILE__> +and C<__LINE__> parameters.. OPENSSL_secure_allocated() tells whether or not a pointer is within the secure heap.