Bug 561526: NS_RELEASE nulls out gHttpHandler, causing segfaults at next use. r=dwitte,jdm sr=biesi

This commit is contained in:
Jason Duell 2010-04-25 18:56:51 -07:00
Родитель bc221523fd
Коммит 334cb492bd
2 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -69,8 +69,7 @@ HttpBaseChannel::~HttpBaseChannel()
{
LOG(("Destroying HttpBaseChannel @%x\n", this));
nsHttpHandler* handler = gHttpHandler;
NS_RELEASE(handler);
gHttpHandler->Release();
}
nsresult

Просмотреть файл

@ -58,7 +58,7 @@ HttpChannelParent::HttpChannelParent()
HttpChannelParent::~HttpChannelParent()
{
NS_RELEASE(gHttpHandler);
gHttpHandler->Release();
}
//-----------------------------------------------------------------------------