Added SSLErr call for internal error in dtls1_buffer_record
authorMatt Caswell <matt@openssl.org>
Sun, 1 Jun 2014 20:32:19 +0000 (21:32 +0100)
committerMatt Caswell <matt@openssl.org>
Sun, 1 Jun 2014 20:38:01 +0000 (21:38 +0100)
ssl/d1_pkt.c

index 3a28e59273821a157d1b9e8421700bd69168761e..438c0913d24e7207e30e956f5dc64b36d7449905 100644 (file)
@@ -255,6 +255,7 @@ dtls1_buffer_record(SSL *s, record_pqueue *queue, unsigned char *priority)
        /* insert should not fail, since duplicates are dropped */
        if (pqueue_insert(queue->q, item) == NULL)
                {
+               SSLerr(SSL_F_DTLS1_BUFFER_RECORD, ERR_R_INTERNAL_ERROR);
                OPENSSL_free(rdata);
                pitem_free(item);
                return(0);