CVSROOT: /cvs Module name: src Changes by: js...@cvs.openbsd.org 2014/06/08 08:43:57
Modified files: lib/libssl/src/ssl: bio_ssl.c Log message: Clean up BIO_free() handling in bio_ssl.c - BIO_free() has its own NULL check, so do not duplicate it here. Make the error handling consistent by always using 'goto err' rather than returning in certain cases. Also add a missing BIO_free(ssl) in BIO_new_ssl_connect(). ok deraadt@