ffmpeg: Use av_freep(), avoid leaving stale pointers in memory

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-12-28 02:56:02 +01:00
parent cc63da1223
commit 627f5658b6
1 changed files with 2 additions and 2 deletions

View File

@ -516,7 +516,7 @@ static void ffmpeg_cleanup(int ret)
if (vstats_file) if (vstats_file)
fclose(vstats_file); fclose(vstats_file);
av_free(vstats_filename); av_freep(&vstats_filename);
av_freep(&input_streams); av_freep(&input_streams);
av_freep(&input_files); av_freep(&input_files);
@ -2294,7 +2294,7 @@ static void print_sdp(void)
} else { } else {
avio_printf(sdp_pb, "SDP:\n%s", sdp); avio_printf(sdp_pb, "SDP:\n%s", sdp);
avio_close(sdp_pb); avio_close(sdp_pb);
av_free(sdp_filename); av_freep(&sdp_filename);
} }
} }