1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avfilter/af_join: do not dereference possible null pointer

This commit is contained in:
Paul B Mahol 2022-03-31 00:46:47 +02:00
parent f9db470f25
commit 55e509b094

View File

@ -586,6 +586,7 @@ static int activate(AVFilterContext *ctx)
}
}
if (s->input_frames[0])
nb_samples = s->input_frames[0]->nb_samples;
for (i = 1; i < ctx->nb_inputs && nb_samples > 0; i++) {