5 ms·
There was some discussion here[1] that OpenSSL had implemented their own allocators, but doesn't seem to be the case. As this article points out, a quick review
by cmbaus 12y ago
There was some discussion here[1] that OpenSSL had implemented their own allocators, but doesn't seem to be the case. As this article points out, a quick review of the code will show that OPENSSL_Malloc() is simply malloc by default[2].
[1] https://news.ycombinator.com/item?id=7565064 https://news.ycombinator.com/item?id=7565064
[2] https://github.com/openssl/openssl/blob/a898936218bc279b5d7cdf76d58a25e7a2d419cb/crypto/mem.c#L77 https://github.com/openssl/openssl/blob/a898936218bc279b5d7c...