Closed
Bug 616275
Opened 15 years ago
Closed 15 years ago
nsEstablishedWebSocketConnection::RemoveFromLoadGroup always short-circuits
Categories
(Core :: Networking: WebSockets, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: jdm, Assigned: mcmanus)
References
Details
RemoveFromLoadGroup calls GetLoadGroup as so:
> 2358 NS_IMETHODIMP
> 2359 nsWebSocketEstablishedConnection::GetLoadGroup(nsILoadGroup **aLoadGroup)
> 2360 {
> 2361 *aLoadGroup = nsnull;
> 2362 if (!mOwner)
> 2363 return NS_OK;
However, from Disconnect, the only caller of RemoveLoadGroup:
> 2101 mOwner = nsnull;
Is this a problem?
| Assignee | ||
Comment 1•15 years ago
|
||
This is fixed in 640003
| Assignee | ||
Comment 2•15 years ago
|
||
fixed as part of 640003
Status: ASSIGNED → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•