Initialized m_Request to nsnull to prevent a crash durng destruction - it was trying to free uninitialized memory :-(
git-svn-id: svn://10.0.0.236/trunk@32703 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
parent
9c7d7f0526
commit
67cddc9e2a
@ -27,7 +27,8 @@ nsHTTPRequest::nsHTTPRequest(nsIUrl* i_pURL, HTTPMethod i_Method):
|
||||
m_pURI(i_pURL),
|
||||
m_Method(i_Method),
|
||||
m_pArray(new nsVoidArray()),
|
||||
m_Version(HTTP_ONE_ZERO)
|
||||
m_Version(HTTP_ONE_ZERO),
|
||||
m_Request(nsnull)
|
||||
{
|
||||
Build();
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user