avfilter/vf_morpho: fix leak by not returning too early

This commit is contained in:
Paul B Mahol 2021-10-05 20:10:26 +02:00
parent 07e4669053
commit 21979cf98e
1 changed files with 1 additions and 1 deletions

View File

@ -892,7 +892,7 @@ copy:
break; break;
ret = erode(&s->h[p], &s->f[p], &s->SE[p], &s->Ty[1][p]); ret = erode(&s->h[p], &s->f[p], &s->SE[p], &s->Ty[1][p]);
if (ret < 0) if (ret < 0)
return ret; break;
difference(&s->g[p], &s->h[p]); difference(&s->g[p], &s->h[p]);
break; break;
case TOPHAT: case TOPHAT: