1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-01 08:49:59 +02:00

ffmpeg: fix parse_option() string memleak.

This commit is contained in:
Clément Bœsch 2012-01-13 01:49:41 +01:00
parent 3a1df393b8
commit 2a81e0c2ad

View File

@ -4875,7 +4875,7 @@ static int opt_bitrate(OptionsContext *o, const char *opt, const char *arg)
{
if(!strcmp(opt, "b")){
av_log(0,AV_LOG_WARNING, "Please use -b:a or -b:v, -b is ambiguous\n");
return parse_option(o, av_strdup("b:v"), arg, options);
return parse_option(o, "b:v", arg, options);
}
return opt_default(opt, arg);
}