summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2014-06-01 21:32:19 +0100
committerMatt Caswell <matt@openssl.org>2014-06-01 21:40:31 +0100
commitde8a5b523f38377c8e0d9098ebff880749156db6 (patch)
tree3c40d5e75117c0e01290a2d6994e7cc060c101a5 /ssl
parent8de85b00484e7e4ca6f0b6e174fb1dc97db91281 (diff)
Added SSLErr call for internal error in dtls1_buffer_record
Diffstat (limited to 'ssl')
-rw-r--r--ssl/d1_pkt.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ssl/d1_pkt.c b/ssl/d1_pkt.c
index 43a09123f4..657c12f975 100644
--- a/ssl/d1_pkt.c
+++ b/ssl/d1_pkt.c
@@ -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);