CVSROOT: /cvs Module name: src Changes by: schwa...@cvs.openbsd.org 2021/11/13 13:44:01
Modified files: lib/libcrypto/asn1: asn1_lib.c Log message: Fix a nasty quirk in ASN1_STRING_copy(3). In case of failure, it reported the failure but corrupted the type of the destination string. Instead, let's make sure that in case of failure, existing objects remain in their original state. OK tb@