mirror of https://git.ffmpeg.org/ffmpeg.git
lavfi/avf_showspectrum: Fix the memory leak in error handle path
Fix the memory leak in error handle path. Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
This commit is contained in:
parent
02a83e26de
commit
46d2a67f80
|
@ -700,16 +700,15 @@ static int draw_legend(AVFilterContext *ctx, int samples)
|
||||||
|
|
||||||
drawtext(s->outpicref, 2, outlink->h - 10, "CREATED BY LIBAVFILTER", 0);
|
drawtext(s->outpicref, 2, outlink->h - 10, "CREATED BY LIBAVFILTER", 0);
|
||||||
drawtext(s->outpicref, outlink->w - 2 - strlen(text) * 10, outlink->h - 10, text, 0);
|
drawtext(s->outpicref, outlink->w - 2 - strlen(text) * 10, outlink->h - 10, text, 0);
|
||||||
|
av_freep(&text);
|
||||||
if (s->stop) {
|
if (s->stop) {
|
||||||
char *text = av_asprintf("Zoom: %d Hz - %d Hz", s->start, s->stop);
|
text = av_asprintf("Zoom: %d Hz - %d Hz", s->start, s->stop);
|
||||||
if (!text)
|
if (!text)
|
||||||
return AVERROR(ENOMEM);
|
return AVERROR(ENOMEM);
|
||||||
drawtext(s->outpicref, outlink->w - 2 - strlen(text) * 10, 3, text, 0);
|
drawtext(s->outpicref, outlink->w - 2 - strlen(text) * 10, 3, text, 0);
|
||||||
av_freep(&text);
|
av_freep(&text);
|
||||||
}
|
}
|
||||||
|
|
||||||
av_freep(&text);
|
|
||||||
|
|
||||||
dst = s->outpicref->data[0] + (s->start_y - 1) * s->outpicref->linesize[0] + s->start_x - 1;
|
dst = s->outpicref->data[0] + (s->start_y - 1) * s->outpicref->linesize[0] + s->start_x - 1;
|
||||||
for (x = 0; x < s->w + 1; x++)
|
for (x = 0; x < s->w + 1; x++)
|
||||||
dst[x] = 200;
|
dst[x] = 200;
|
||||||
|
|
Loading…
Reference in New Issue