fixes bug 103757 "'headerless' http for ad banner does not load"

r=bbaetz,badami sr=mscott
This commit is contained in:
darin%netscape.com 2002-02-12 20:24:53 +00:00
Родитель 6726aa05f8
Коммит 8a60343874
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -423,7 +423,7 @@ nsHttpTransaction::ParseHead(char *buf,
// this must be the first time we've been called.
if (!mHaveStatusLine && mLineBuf.IsEmpty()) {
// tolerate some junk before the status line
char *p = LocateHttpStart(buf, PR_MIN(count, 32));
char *p = LocateHttpStart(buf, PR_MIN(count, 8));
if (!p) {
mResponseHead->ParseStatusLine("");
mHaveStatusLine = PR_TRUE;
@ -433,7 +433,6 @@ nsHttpTransaction::ParseHead(char *buf,
if (p > buf) {
// skip over the junk
*countRead = p - buf;
count -= *countRead;
buf = p;
}
}