Browse Source

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

tags/n4.2
Gyan Doshi 7 years ago
parent
commit
2e2b44baba
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/http.c

+ 1
- 1
libavformat/http.c View File

@@ -541,7 +541,7 @@ static int http_open(URLContext *h, const char *uri, int flags,
int len = strlen(s->headers);
if (len < 2 || strcmp("\r\n", s->headers + len - 2)) {
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);
if (ret < 0)
return ret;


Loading…
Cancel
Save