summaryrefslogtreecommitdiff
path: root/libavformat/hls.c
diff options
context:
space:
mode:
authorAman Gupta <aman@tmm1.net>2017-12-24 11:58:30 -0800
committerAman Gupta <aman@tmm1.net>2017-12-24 11:58:30 -0800
commit3d95868d1bf2197597fbcbddd984eac175325a14 (patch)
treeacd811609d957af8a469c387f873fa64b1e38ed4 /libavformat/hls.c
parent5533cbfc84ea120f35cc0fd62bc58fcb2cd3fbfc (diff)
avformat/hls: fix CID 1426930
Signed-off-by: Aman Gupta <aman@tmm1.net>
Diffstat (limited to 'libavformat/hls.c')
-rw-r--r--libavformat/hls.c2
1 files changed, 1 insertions, 1 deletions
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)) {