Re: [FFmpeg-devel] [PATCH 1/3] http: do not print a warning message for expired cookies

2018-03-18 Thread wm4
On Thu, 8 Mar 2018 04:53:55 +0100 wm4 wrote: > libavformat prints a warning that the cookie couldn't be parsed (see > callers of parse_cookie()). This is obviously not true - it could be > parsed, but was simply ignored. Don't return an error to avoid the > warning. > ---

Re: [FFmpeg-devel] [PATCH 1/3] http: do not print a warning message for expired cookies

2018-03-08 Thread wm4
On Thu, 8 Mar 2018 17:47:33 +0100 Carl Eugen Hoyos wrote: > 2018-03-08 4:53 GMT+01:00, wm4 : > > libavformat prints a warning that the cookie couldn't be parsed (see > > callers of parse_cookie()). This is obviously not true - it could be > > parsed,

Re: [FFmpeg-devel] [PATCH 1/3] http: do not print a warning message for expired cookies

2018-03-08 Thread Carl Eugen Hoyos
2018-03-08 4:53 GMT+01:00, wm4 : > libavformat prints a warning that the cookie couldn't be parsed (see > callers of parse_cookie()). This is obviously not true - it could be > parsed, but was simply ignored. Don't return an error to avoid the > warning. > --- >

[FFmpeg-devel] [PATCH 1/3] http: do not print a warning message for expired cookies

2018-03-07 Thread wm4
libavformat prints a warning that the cookie couldn't be parsed (see callers of parse_cookie()). This is obviously not true - it could be parsed, but was simply ignored. Don't return an error to avoid the warning. --- libavformat/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff