[FFmpeg-cvslog] lavf/ftp: fix possible crash
Lukasz Marek
git at videolan.org
Thu Aug 29 02:13:43 CEST 2013
ffmpeg | branch: master | Lukasz Marek <lukasz.m.luki at gmail.com> | Thu Aug 29 01:54:04 2013 +0200| [f3ace37a3b8c93218630a37b7df4dc195f1215a9] | committer: Lukasz Marek
lavf/ftp: fix possible crash
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f3ace37a3b8c93218630a37b7df4dc195f1215a9
---
libavformat/ftp.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavformat/ftp.c b/libavformat/ftp.c
index c73319d..eb3827f 100644
--- a/libavformat/ftp.c
+++ b/libavformat/ftp.c
@@ -128,7 +128,8 @@ static int ftp_status(FTPContext *s, char **line, const int response_codes[])
while (!code_found || dash) {
if ((err = ftp_get_line(s, buf, sizeof(buf))) < 0) {
- av_bprint_finalize(&line_buffer, NULL);
+ if (line)
+ av_bprint_finalize(&line_buffer, NULL);
return err;
}
More information about the ffmpeg-cvslog
mailing list