CVSROOT: /cvs Module name: src Changes by: [email protected] 2017/04/10 10:47:08
Modified files:
lib/libssl : ssl_asn1.c
Log message:
Use freezero() for i2d_SSL_SESSION() - one line of code instead of three.
In this case the memory allocated can also be significant, in which case
freezero() will have less overhead than explicit_bzero() (munmap instead
of touching all of the memory to write zeros).
