lavc/bsf/eia608_to_smpte436m: fix memory leak -- forgot to free input av_packet
reported in https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20024#issuecomment-2405 Reported-by: Sean McGovern <gseanmcg@gmail.com> Signed-off-by: Jacob Lifshay <programmerjake@gmail.com>
This commit is contained in:
parent
1d76302eb6
commit
f0a53917e3
1 changed files with 1 additions and 1 deletions
|
|
@ -236,7 +236,7 @@ static int ff_eia608_to_smpte436m_filter(AVBSFContext *ctx, AVPacket *out)
|
|||
if (ret < 0)
|
||||
goto fail;
|
||||
|
||||
return 0;
|
||||
ret = 0;
|
||||
|
||||
fail:
|
||||
if (ret < 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue