CVSROOT: /cvs Module name: src Changes by: [email protected] 2023/03/03 23:25:42
Modified files:
usr.bin/openssl: req.c
Log message:
openssl/req: garbage collect a pointless EVP_MD_CTX_init()
Before do_sign_init(), the ctx is always allocated by EVP_MD_CTX_new()
aka calloc(). There is no point in doing EVP_MD_CTX_init(), aka bzero().
ok jsing
