summaryrefslogtreecommitdiff
path: root/libavformat/hlsenc.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-12-21 00:27:00 +0100
committerMartin Storsjö <martin@martin.st>2012-12-24 00:02:45 +0200
commit3193b13aa1e271f6d2dd68de67d448c08aef3c00 (patch)
tree4978e56636c1bd5c22b53a12470da13579ef250b /libavformat/hlsenc.c
parent0940580adb5e6bde8782841b3104fd0783e541f0 (diff)
hlsenc: Allocate enough space for the pattern string
If s->filename doesn't contain any period/filename extension to strip away, the buffer will be too small to fit both strings. This isn't any buffer overflow since the concatenation uses av_strlcat with the right buffer size. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/hlsenc.c')
-rw-r--r--libavformat/hlsenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index e269358658..c5157dc6c7 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -182,7 +182,7 @@ static int hls_write_header(AVFormatContext *s)
int ret, i;
char *p;
const char *pattern = "%d.ts";
- int basename_size = strlen(s->filename) + strlen(pattern);
+ int basename_size = strlen(s->filename) + strlen(pattern) + 1;
hls->number = 0;