mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-06-16 04:32:47 +02:00
Remove forgotten if (p) av_free(p) forms
Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
committed by
Mans Rullgard
parent
523d9407d5
commit
290849e2a4
@@ -126,7 +126,7 @@ AVFilterBufferRef *avfilter_default_get_audio_buffer(AVFilterLink *link, int per
|
||||
return ref;
|
||||
|
||||
fail:
|
||||
if (ref && ref->audio)
|
||||
if (ref)
|
||||
av_free(ref->audio);
|
||||
av_free(ref);
|
||||
av_free(samples);
|
||||
|
||||
Reference in New Issue
Block a user