CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2024/04/09 07:56:00
Modified files:
lib/libcrypto/asn1: a_time_tm.c
Log message:
Plug leaks in ASN1_TIME_set_string_internal()
This API can be called with s == NULL, in which case the tm_to_*()
functions helpfully allocate a new s and then leak. This is a rather
ugly fix to make portable ASAN regress happy again, the better fix
will be to rewrite the tm_to_*() functions and adjust their callers.
That is more intrusive and will be done in a later pass.
ok bcook jsing