From 3d95868d1bf2197597fbcbddd984eac175325a14 Mon Sep 17 00:00:00 2001 From: Aman Gupta Date: Sun, 24 Dec 2017 11:58:30 -0800 Subject: [PATCH] avformat/hls: fix CID 1426930 Signed-off-by: Aman Gupta --- libavformat/hls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/hls.c b/libavformat/hls.c index f718f2e6c1..5dadcfcc29 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -1197,7 +1197,7 @@ static int open_input(HLSContext *c, struct playlist *pls, struct segment *seg, AVDictionary *opts2 = NULL; char iv[33], key[33], url[MAX_URL_SIZE]; if (strcmp(seg->key, pls->key_url)) { - AVIOContext *pb; + AVIOContext *pb = NULL; if (open_url(pls->parent, &pb, seg->key, c->avio_opts, opts, NULL) == 0) { ret = avio_read(pb, pls->key, sizeof(pls->key)); if (ret != sizeof(pls->key)) {