On 5/10/2017 3:33 AM, Steven Liu wrote:
Suggested-by: Aaron Levinson <[email protected]> Signed-off-by: Steven Liu <[email protected]> --- libavformat/hlsenc.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-)diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 221089c..7ed121a 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -1549,14 +1549,13 @@ static int hls_write_packet(AVFormatContext *s, AVPacket *pkt) sls_flag_file_rename(hls, old_filename); ret = hls_start(s); } + av_free(old_filename); if (ret < 0) { - av_free(old_filename); return ret; } if ((ret = hls_window(s, 0)) < 0) { - av_free(old_filename); return ret; } }
LGTM Aaron Levinson _______________________________________________ ffmpeg-devel mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
