Fix null pointer errors.
authorDr. Stephen Henson <steve@openssl.org>
Tue, 10 Jun 2014 13:47:29 +0000 (14:47 +0100)
committerDr. Stephen Henson <steve@openssl.org>
Tue, 10 Jun 2014 13:48:19 +0000 (14:48 +0100)
PR#3394
(cherry picked from commit 7a9d59c148b773f59a41f8697eeecf369a0974c2)

crypto/ocsp/ocsp_ht.c
ssl/d1_both.c

index 92aba08c8fbd27bc6aae3a854606a3464362c603..fb87cd764b3650105bc444e27e567c2ffd46edcc 100644 (file)
@@ -464,6 +464,9 @@ OCSP_RESPONSE *OCSP_sendreq_bio(BIO *b, char *path, OCSP_REQUEST *req)
 
        ctx = OCSP_sendreq_new(b, path, req, -1);
 
+       if (!ctx)
+               return NULL;
+
        do
                {
                rv = OCSP_sendreq_nbio(&resp, ctx);
index 61867b3e33692c32745c7e50563b99af8e21cdd0..fe3a96cd25220f65df988cb968826a55b07fc226 100644 (file)
@@ -1173,6 +1173,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);