CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2024/10/02 22:15:52
Modified files: lib/libcrypto/ec: ec_asn1.c Log message: Fix BN_to_ASN1_INTEGER() misuse You can either let this API reuse an existing ASN1_INTEGER or you can let it allocate a new one. If you try to do both at the same time, you'll leak. ok jsing