Commit 6a78ae28 authored by David Woodhouse's avatar David Woodhouse Committed by Rich Salz
Browse files

RT4313: Fix build for !IMPLEMENTED code path in CRYPTO_secure_free()



Commit 05c7b163 ("Implement the use of heap manipulator implementions")
added 'file' and 'line' arguments to CRYPTO_free() and friends, but neglected
to fix up the !IMPLEMENTED case within CRYPTO_secure_free(). Add the missing
arguments there too.

Signed-off-by: default avatarRich Salz <rsalz@openssl.org>
Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
parent d6b55fac
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -138,7 +138,7 @@ void CRYPTO_secure_free(void *ptr, const char *file, int line)
    sh_free(ptr);
    UNLOCK();
#else
    CRYPTO_free(ptr);
    CRYPTO_free(ptr, file, line);
#endif /* IMPLEMENTED */
}