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:
rpotts%netscape.com 1999-05-26 21:04:11 +00:00
parent 9c7d7f0526
commit 67cddc9e2a

View File

@ -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();
}