summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorEmilia Kasper <emilia@openssl.org>2015-03-04 13:05:53 -0800
committerEmilia Kasper <emilia@openssl.org>2015-03-10 12:18:18 -0700
commit06c6a2b4a3a6e64303caa256398dd2dc16f9c35a (patch)
tree0a9143ea2a2183122a8c584dda3501aedc1d249e /ssl
parent460e920d8a274e27aab36346eeda6685a42c3314 (diff)
Harmonize return values in dtls1_buffer_record
Ensure all malloc failures return -1. Reported by Adam Langley (Google). Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'ssl')
-rw-r--r--ssl/d1_pkt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/d1_pkt.c b/ssl/d1_pkt.c
index b1d9156de7..4dbd694442 100644
--- a/ssl/d1_pkt.c
+++ b/ssl/d1_pkt.c
@@ -231,7 +231,7 @@ dtls1_buffer_record(SSL *s, record_pqueue *queue, unsigned char *priority)
pitem_free(item);
SSLerr(SSL_F_DTLS1_BUFFER_RECORD, ERR_R_INTERNAL_ERROR);
- return (0);
+ return -1;
}
rdata->packet = s->packet;