From fd3dabe68e14cebb3664b155b9e072ad60c11e91 Mon Sep 17 00:00:00 2001 From: Limin Wang Date: Sat, 13 Mar 2021 10:34:12 +0800 Subject: [PATCH] avfilter/vf_ssim: remove unnecessary check For the pointer have been checked in the previous few lines of code Signed-off-by: Limin Wang --- libavfilter/vf_ssim.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_ssim.c b/libavfilter/vf_ssim.c index e004b36e76d..c6e4fe286a5 100644 --- a/libavfilter/vf_ssim.c +++ b/libavfilter/vf_ssim.c @@ -496,7 +496,7 @@ static int config_input_ref(AVFilterLink *inlink) if (!s->score) return AVERROR(ENOMEM); - for (int t = 0; t < s->nb_threads && s->score; t++) { + for (int t = 0; t < s->nb_threads; t++) { s->score[t] = av_calloc(s->nb_components, sizeof(*s->score[0])); if (!s->score[t]) return AVERROR(ENOMEM); -- 2.39.2