diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-08-10 18:46:38 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-08-10 18:46:38 +0200 |
commit | 55a07cf49c00ecdf6fc43530cc5a247491936923 (patch) | |
tree | 5291a8570f29cb4f579ec0bf799998ab8ff4dc1c /libavformat/ftp.c | |
parent | ee44cb3c81a9e471935ced59bee3d5ff51a1fcbe (diff) | |
download | ffmpeg-55a07cf49c00ecdf6fc43530cc5a247491936923.tar.gz |
avformat/ftp: Use av_freep() for dir_buffer
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/ftp.c')
-rw-r--r-- | libavformat/ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/ftp.c b/libavformat/ftp.c index 542cf6a862..5d007804fd 100644 --- a/libavformat/ftp.c +++ b/libavformat/ftp.c @@ -964,7 +964,7 @@ static int ftp_read_dir(URLContext *h, AVIODirEntry **next) static int ftp_close_dir(URLContext *h) { FTPContext *s = h->priv_data; - av_free(s->dir_buffer); + av_freep(&s->dir_buffer); ffurl_closep(&s->conn_control); ffurl_closep(&s->conn_data); return 0; |