You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Function SSL_new() returns a pointer to an SSL object on success or NULL on error. However, the function SSL_new() in keepalived/genhash/ssl.c didn't check the return value is NULL or not, before passing the return value as an argument to both the function SSL_set0_rbio() and SSL_set0_wbio(). See the following details.
Chi Li, Zuxing Gu, Jiecheng Wu
The text was updated successfully, but these errors were encountered:
pqarmitage
added a commit
to pqarmitage/keepalived
that referenced
this issue
Sep 19, 2018
Issue acassen#1004 identified that genhash didn't check the return value
of SSL_new(). This commit makes genhash check the return value of
SSL_new() and also BIO_new_socket(), and also fixes the same
problem in keepalived check_ssl.c/ssl_commect().
Signed-off-by: Quentin Armitage <[email protected]>
Commit 31b0644 now makes genhash check the return value of SSL_new() and also BIO_new_socket(). It also applies similar updates to keepalived/check_ssl.c.
Hi,
Function SSL_new() returns a pointer to an SSL object on success or NULL on error. However, the function SSL_new() in keepalived/genhash/ssl.c didn't check the return value is NULL or not, before passing the return value as an argument to both the function SSL_set0_rbio() and SSL_set0_wbio(). See the following details.
Chi Li, Zuxing Gu, Jiecheng Wu
The text was updated successfully, but these errors were encountered: