CVSROOT: /cvs Module name: src Changes by: [email protected] 2020/08/31 23:38:48
Modified files:
lib/libssl : t1_lib.c
Log message:
Hoist ERR_clear_error() call into the derr: label
The only path that sets TLS1_TICKET_NOT_DECRPYTED is through this label
and the ERR_clear_error() is called conditionally on this. We clear the
errors to make decrypt errors non-fatal. The free functions should not
set the errors and if they do, we don't want to hide that.
discussed with jsing
