Commit 7ad06beb authored by Alex Converse's avatar Alex Converse

mov: 10l: Terminate string with 0 not '0'

parent 8fb22c3d
...@@ -2380,7 +2380,7 @@ static void mov_read_chapters(AVFormatContext *s) ...@@ -2380,7 +2380,7 @@ static void mov_read_chapters(AVFormatContext *s)
else { else {
AV_WB16(title, ch); AV_WB16(title, ch);
if (len == 1 || len == 2) if (len == 1 || len == 2)
title[len] = '0'; title[len] = 0;
else else
avio_get_str(sc->pb, len - 2, title + 2, title_len - 2); avio_get_str(sc->pb, len - 2, title + 2, title_len - 2);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment