Commit 2e2b44ba authored by Gyan Doshi's avatar Gyan Doshi

avformat/http: clarify that ffmpeg will attempt to add missing CRLF

parent 286e58bb
...@@ -541,7 +541,7 @@ static int http_open(URLContext *h, const char *uri, int flags, ...@@ -541,7 +541,7 @@ static int http_open(URLContext *h, const char *uri, int flags,
int len = strlen(s->headers); int len = strlen(s->headers);
if (len < 2 || strcmp("\r\n", s->headers + len - 2)) { if (len < 2 || strcmp("\r\n", s->headers + len - 2)) {
av_log(h, AV_LOG_WARNING, av_log(h, AV_LOG_WARNING,
"No trailing CRLF found in HTTP header.\n"); "No trailing CRLF found in HTTP header. Adding it.\n");
ret = av_reallocp(&s->headers, len + 3); ret = av_reallocp(&s->headers, len + 3);
if (ret < 0) if (ret < 0)
return ret; return ret;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment