diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-03-14 21:23:32 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-03-14 21:58:26 +0100 |
commit | 350054e8e216e7f2370e0215a0222020703e8062 (patch) | |
tree | 63100ff76cfe9a40a9d8ce853abea5f9254db4fe | |
parent | 7ff46a20d5cc2d746d7396cc80120cb77e5fd90e (diff) | |
download | ffmpeg-350054e8e216e7f2370e0215a0222020703e8062.tar.gz |
avformat/mov: Use sizeof(filename) instead of a literal number
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 21a53dd08dce7cc5b3fdf9c4826b4b74d8300ea0)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/mov.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 986af57e7c..2129620679 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -2626,9 +2626,9 @@ static int mov_open_dref(AVIOContext **pb, const char *src, MOVDref *ref, filename[src_path - src] = 0; for (i = 1; i < ref->nlvl_from; i++) - av_strlcat(filename, "../", 1024); + av_strlcat(filename, "../", sizeof(filename)); - av_strlcat(filename, ref->path + l + 1, 1024); + av_strlcat(filename, ref->path + l + 1, sizeof(filename)); if (!avio_open2(pb, filename, AVIO_FLAG_READ, int_cb, NULL)) return 0; |