Commit 94d45a13 authored by Cameron Cawley's avatar Cameron Cawley Committed by Michael Niedermayer

avformat/rpl: Replace strcpy with av_strlcpy

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 925e33b2
......@@ -200,7 +200,7 @@ static int rpl_read_header(AVFormatContext *s)
ast->codecpar->channels = read_line_and_int(pb, &error); // number of audio channels
error |= read_line(pb, line, sizeof(line));
ast->codecpar->bits_per_coded_sample = read_int(line, &endptr, &error); // audio bits per sample
strcpy(audio_type, endptr);
av_strlcpy(audio_type, endptr, RPL_LINE_LENGTH);
// At least one sample uses 0 for ADPCM, which is really 4 bits
// per sample.
if (ast->codecpar->bits_per_coded_sample == 0)
......
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