Closed
Bug 457746
Opened 16 years ago
Closed 16 years ago
mChannel can be bogusly null in XMLHttpRequest
Categories
(Core :: DOM: Core & HTML, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 390219
People
(Reporter: bzbarsky, Unassigned)
Details
We reset mChannel when we get OnStopRequest, but we aren't verifying that it's OnStopRequest for the right channel. So in a testcase like this:
var xhr = new XMLHttpRequest();
xhr.open("GET", uri);
xhr.send("");
xhr.abort();
xhr.open("GET", uri);
xhr.send("");
we will null out mChannel once we get OnStopRequest for the first channel, and after that get various things wrong about the second channel.... Testcases and patch hopefully coming up soon.
![]() |
Reporter | |
Comment 1•16 years ago
|
||
Nevermind. This was branch-only.
Status: NEW → RESOLVED
Closed: 16 years ago
Resolution: --- → DUPLICATE
Updated•16 years ago
|
QA Contact: content
Assignee | ||
Updated•6 years ago
|
Component: DOM → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•