From 7a9d59c148b773f59a41f8697eeecf369a0974c2 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Tue, 10 Jun 2014 14:47:29 +0100 Subject: [PATCH 1/1] Fix null pointer errors. PR#3394 --- crypto/ocsp/ocsp_ht.c | 3 +++ ssl/d1_both.c | 2 ++ 2 files changed, 5 insertions(+) diff --git a/crypto/ocsp/ocsp_ht.c b/crypto/ocsp/ocsp_ht.c index a05304748a..bac35f8de1 100644 --- a/crypto/ocsp/ocsp_ht.c +++ b/crypto/ocsp/ocsp_ht.c @@ -571,6 +571,9 @@ OCSP_RESPONSE *OCSP_sendreq_bio(BIO *b, const char *path, OCSP_REQUEST *req) ctx = OCSP_sendreq_new(b, path, req, -1); + if (!ctx) + return NULL; + do { rv = OCSP_sendreq_nbio(&resp, ctx); diff --git a/ssl/d1_both.c b/ssl/d1_both.c index 228af21462..51d484d7ea 100644 --- a/ssl/d1_both.c +++ b/ssl/d1_both.c @@ -1051,6 +1051,8 @@ dtls1_buffer_message(SSL *s, int is_ccs) OPENSSL_assert(s->init_off == 0); frag = dtls1_hm_fragment_new(s->init_num, 0); + if (!frag) + return 0; memcpy(frag->fragment, s->init_buf->data, s->init_num); -- 2.34.1