Review comments

Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2052)
This commit is contained in:
Rich Salz 2017-01-09 12:42:15 -05:00
parent 8cbfcc70bf
commit 1ed327f7df
3 changed files with 4 additions and 4 deletions

View File

@ -1032,7 +1032,7 @@ struct ssl_st {
struct {
/* TLS extension debug callback */
void (*debug_cb) (SSL *s, int client_server, int type,
void (*debug_cb)(SSL *s, int client_server, int type,
const unsigned char *data, int len, void *arg);
void *debug_arg;
char *hostname;

View File

@ -961,7 +961,7 @@ int SSL_set_session_ticket_ext(SSL *s, void *ext_data, int ext_len)
return 0;
}
if (ext_data) {
if (ext_data != NULL) {
s->ext.session_ticket->length = ext_len;
s->ext.session_ticket->data = s->ext.session_ticket + 1;
memcpy(s->ext.session_ticket->data, ext_data, ext_len);