Closed
Bug 94742
Opened 25 years ago
Closed 25 years ago
header parsing regression
Categories
(Core :: Networking: HTTP, defect, P1)
Core
Networking: HTTP
Tracking
()
VERIFIED
FIXED
mozilla0.9.2
People
(Reporter: darin.moz, Assigned: darin.moz)
References
()
Details
(Keywords: regression, topembed, Whiteboard: r=bbaetz, sr=mscott, verified-on-trunk)
Attachments
(3 files)
|
1.60 KB,
text/html
|
Details | |
|
42.10 KB,
text/plain
|
Details | |
|
1.11 KB,
patch
|
Details | Diff | Splinter Review |
i've noticed on several occasions a failure to correctly parse the status line.
it appears that the status line is being treated as a response header in some
cases. this may explain why some pages don't finish loading, etc.
| Assignee | ||
Comment 1•25 years ago
|
||
| Assignee | ||
Updated•25 years ago
|
Severity: normal → major
Status: NEW → ASSIGNED
Priority: -- → P1
Target Milestone: --- → mozilla0.9.4
| Assignee | ||
Comment 2•25 years ago
|
||
backed out this portion of bbaetz's fix for bug 89365:
if (!mHaveStatusLine && mLineBuf.Last() == '\n') {
// status lines aren't foldable, so don't try. See bug 89365
ParseLine(NS_CONST_CAST(char*,mLineBuf.get()));
}
and the problem went away.
Keywords: regression
| Assignee | ||
Comment 3•25 years ago
|
||
| Assignee | ||
Comment 4•25 years ago
|
||
Comment 5•25 years ago
|
||
r=bbaetz. oops.
| Assignee | ||
Comment 6•25 years ago
|
||
my patch makes it so that we only check for a leading ' ' or '\t' if we already
have the status line. in this way, we prevent allowing folded status lines as
was the point of bug 89365.
Comment 7•25 years ago
|
||
sr=mscott
| Assignee | ||
Updated•25 years ago
|
Whiteboard: r=bbaetz, sr=? → r=bbaetz, sr=mscott, fixed-on-trunk
Target Milestone: mozilla0.9.4 → ---
| Assignee | ||
Comment 8•25 years ago
|
||
fixed-on-trunk
Comment 9•25 years ago
|
||
tever@netscape.com, has it beeen verified on the trunk? If yes, please change
the status summary and let's land on the 0.9.2 branch.
Comment 10•25 years ago
|
||
verified on trunk:
Win NT4 2001081303
Linux rh6 2001081308
Mac os9 2001081408
Whiteboard: r=bbaetz, sr=mscott, fixed-on-trunk → r=bbaetz, sr=mscott, verified-on-trunk
| Assignee | ||
Updated•25 years ago
|
Target Milestone: --- → mozilla0.9.2
| Assignee | ||
Comment 11•25 years ago
|
||
fixed-on-branch
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•