From 0cabb95811f9618f0f02fe20cd9d4b99a42e244b Mon Sep 17 00:00:00 2001 From: Lukasz Marek Date: Thu, 29 Aug 2013 01:54:04 +0200 Subject: [PATCH] lavf/ftp: fix possible crash (cherry picked from commit f3ace37a3b8c93218630a37b7df4dc195f1215a9) Signed-off-by: Michael Niedermayer --- libavformat/ftp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavformat/ftp.c b/libavformat/ftp.c index 6358726034..572d4b4357 100644 --- a/libavformat/ftp.c +++ b/libavformat/ftp.c @@ -133,7 +133,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; }