Merge change 23632 into eclair

* changes:
  Increase buffer allocated to receive HTTP response, YouTube is rather verbose...
This commit is contained in:
Android (Google) Code Review
2009-09-02 10:05:45 -07:00

View File

@@ -174,7 +174,7 @@ status_t HTTPStream::receive_header(int *http_status) {
*http_status = -1;
mHeaders.clear();
char line[256];
char line[1024];
status_t err = receive_line(line, sizeof(line));
if (err != OK) {
return err;