Closed
Bug 656989
Opened 14 years ago
Closed 14 years ago
nsHttpConnection doesn't change mCallbacks to actual during Activate
Categories
(Core :: Networking: HTTP, defect)
Core
Networking: HTTP
Tracking
()
RESOLVED
FIXED
People
(Reporter: mayhemer, Assigned: mcmanus)
References
Details
(Whiteboard: [http-conn])
Attachments
(1 file)
1.51 KB,
patch
|
mcmanus
:
review+
|
Details | Diff | Splinter Review |
Discovered by Patrick McManus during work on bug 635545 comment 30.
This is a regression from bug 623948.
The issue is that mCallbacks is assigned to nsHttpConnection object at the time it is first established. There are two ways we handle such connection: we activate it with a transaction from which the callbacks were originally extracted (most common, and all good) or, we put it on the idle list leaving it with the original callbacks.
It the letter case, or in case of reusing the connection in the former case, we do not properly change the callbacks to callbacks of the new transaction that the connection is just being (re)activated with.
Assignee | ||
Comment 1•14 years ago
|
||
While running the tests involved in 654201 I sometimes would get a failure in browser/components/privatebrowsing/test/browser/browser_privatebrowsing_certexceptionsui.js from browser-chrome.
setting the syn retry timeout to 1 and running just that single mochitest made it 50% likely to reproduce. The mochitest would timeout as a failure mode because there was no nsibadsslcertlistener available when it was needed.
The root cause of that was out of date security callbacks that were not reset when an extra idle persistent connection was used for a different transaction than the one that initiated it.
we have an r+'d patch attached to that other bug that I am going to transfer over here - so it can be attached to a bug report of its own as it is really a separate issue.
Assignee | ||
Comment 2•14 years ago
|
||
r=honzab
Assignee: nobody → mcmanus
Attachment #532328 -
Flags: review+
Assignee | ||
Updated•14 years ago
|
Keywords: checkin-needed
Comment 3•14 years ago
|
||
Pushed to cedar (after removing the 4 trailing spaces on the final line added in this bug's patch):
http://hg.mozilla.org/projects/cedar/rev/6d0e02e42e34
After I pushed, I also noticed that the commit message had the wrong bug number -- it said "bug 654201". I'll post a comment on that bug pointing over here.
Updated•14 years ago
|
Keywords: checkin-needed
Whiteboard: fixed-in-cedar
Comment 4•14 years ago
|
||
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Updated•14 years ago
|
Whiteboard: fixed-in-cedar
Reporter | ||
Updated•12 years ago
|
Whiteboard: [http-conn]
You need to log in
before you can comment on or make changes to this bug.
Description
•