summaryrefslogtreecommitdiffstats
path: root/crypto/bio
diff options
context:
space:
mode:
authorJonas Maebe <jonas.maebe@elis.ugent.be>2013-12-08 17:16:12 +0100
committerKurt Roeckx <kurt@roeckx.be>2014-08-15 22:38:05 +0200
commit4e64f671c97650b060f20b6d930a88f1a2a306f7 (patch)
treeea4b7c26e6cb79b87249c8725fc76dba50eded56 /crypto/bio
parent1c4b688cb45a912d25d839f8ed6287e610352f57 (diff)
rtcp_new: return failure if allocation of bi->ptr failed
Signed-off-by: Kurt Roeckx <kurt@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/bio')
-rw-r--r--crypto/bio/bss_rtcp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/bio/bss_rtcp.c b/crypto/bio/bss_rtcp.c
index 7dae485564..d0cd1a9680 100644
--- a/crypto/bio/bss_rtcp.c
+++ b/crypto/bio/bss_rtcp.c
@@ -157,6 +157,8 @@ static int rtcp_new(BIO *bi)
bi->num=0;
bi->flags = 0;
bi->ptr=OPENSSL_malloc(sizeof(struct rpc_ctx));
+ if (bi->ptr == NULL)
+ return(0);
ctx = (struct rpc_ctx *) bi->ptr;
ctx->filled = 0;
ctx->pos = 0;