1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-07 02:16:19 +02:00

asrc_aevalsrc: Fix use of uninitialized pointer inside av_strtok()

Fixes CID733842
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2012-10-11 03:00:34 +02:00
parent 4e4ae2f82c
commit 989c91b504

View File

@ -91,6 +91,12 @@ static int init(AVFilterContext *ctx, const char *args)
eval->class = &aevalsrc_class;
av_opt_set_defaults(eval);
if (!args1) {
av_log(ctx, AV_LOG_ERROR, "Argument is empty\n");
ret = args ? AVERROR(ENOMEM) : AVERROR(EINVAL);
goto end;
}
/* parse expressions */
buf = args1;
i = 0;