From 3ee63f3fb70c3be36aa62adf9ad0fe2defa2bd51 Mon Sep 17 00:00:00 2001
From: Timo Rothenpieler <timo@rothenpieler.org>
Date: Mon, 13 Nov 2017 10:44:16 +0800
Subject: [PATCH] avformat/hlsenc: allocate space for terminating null

Fixes CID #1420394
---
 libavformat/hlsenc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index 5ea9d216a4a..b571772f606 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -1455,7 +1455,7 @@ static int hls_write_header(AVFormatContext *s)
             if (basename_size > 0) {
                 hls->base_output_dirname = av_malloc(basename_size);
             } else {
-                hls->base_output_dirname = av_malloc(strlen(hls->fmp4_init_filename));
+                hls->base_output_dirname = av_malloc(strlen(hls->fmp4_init_filename) + 1);
             }
             if (!hls->base_output_dirname) {
                 ret = AVERROR(ENOMEM);
-- 
GitLab