it is caused by no "content-length" in the HTTP response header
Connection: close
Content-Type: text/plain
Date: Mon, 24 Nov 2008 06:44:22 GMT
Server: MediaProxy
Cache-Control: private, x-gzip-ok=""
relay.ip=209.85.201.126
...............
walk-around:
in httpbase.ccc, HttpParser::process_line() function:
state_ = chunked_ ? ST_CHUNKSIZE : ST_DATA;
err = onHttpRecvHeaderComplete(chunked_, data_size_);
add a new line of code:
state_ = chunked_ ? ST_CHUNKSIZE : ST_DATA;
if (data_size_ == SIZE_UNKNOWN) data_size_ = 1024;//just assign a size
err = onHttpRecvHeaderComplete(chunked_, data_size_);
Original issue reported on code.google.com by mr.chob...@gmail.com on 24 Nov 2008 at 2:22
Original issue reported on code.google.com by
mr.chob...@gmail.com
on 24 Nov 2008 at 2:22