CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2020/05/10 08:17:48
Modified files:
lib/libssl : s3_lib.c ssl_clnt.c ssl_lib.c ssl_locl.h
ssl_srvr.c ssl_tlsext.c t1_lib.c tls13_lib.c
Log message:
Use size_t for OCSP response length.
The OCSP response length is currently an integer, which is overloaded with
-1 meaning "unset". Use a size_t for the OCSP response length and infer
unset from the OCSP response being NULL. This makes code more readable,
simpler and less error prone.
ok beck@