CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2024/07/12 03:25:43
Modified files: lib/libcrypto/x509: x509_v3.c Log message: Clean up X509_EXTENSION_create_by_NID() Remove unnecessary ret parameter and freeing of obj (which looks like a double free or freeing of unallocated memory but actually isn't due to various magic flags). Also make this const correct. ok jsing