From 0a60f83075883f5d73c7f7f20d00ad31897178c2 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 10 Dec 2012 23:58:26 +0100 Subject: [PATCH] http: dont null check p, its unneeded Fixes CID747740 Signed-off-by: Michael Niedermayer --- libavformat/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/http.c b/libavformat/http.c index 766cf8a34d..576875f43a 100644 --- a/libavformat/http.c +++ b/libavformat/http.c @@ -357,7 +357,7 @@ static int process_line(URLContext *h, char *line, int line_count, s->willclose = 1; } else if (!av_strcasecmp (tag, "Server") && !av_strcasecmp (p, "AkamaiGHost")) { s->is_akamai = 1; - } else if (!av_strcasecmp (tag, "Content-Type") && p) { + } else if (!av_strcasecmp (tag, "Content-Type")) { av_free(s->mime_type); s->mime_type = av_strdup(p); } }