# This patch addresses multiple segmentation faults: # Pull Requests submitted to the upstream: # https://github.com/openssl/openssl/pull/1243 # Fixed by upstream: # --- a/apps/s_client.c Tue May 3 06:44:42 2016 +++ b/apps/s_client.c Wed May 4 15:11:00 2016 @@ -2633,7 +2633,8 @@ static void print_stuff(BIO *bio, SSL *s, int full) #endif SSL_SESSION_print(bio, SSL_get_session(s)); - if (keymatexportlabel != NULL) { + if ((SSL_get_session(s) != NULL) && + (keymatexportlabel != NULL)) { BIO_printf(bio, "Keying material exporter:\n"); BIO_printf(bio, " Label: '%s'\n", keymatexportlabel); BIO_printf(bio, " Length: %i bytes\n", keymatexportlen);