CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2022/01/14 21:02:37
Modified files: lib/libcrypto/dsa: dsa_ameth.c Log message: Minor cleanup and simplification in dsa_pub_encode() This function has a weird dance of allocating an ASN1_STRING in an inner scope and assigning it to a void pointer in an outer scope for passing it to X509_PUBKEY_set0_param() and ASN1_STRING_free() on error. This can be simplified and streamlined. ok inoguchi