Memory leak of 3 bytes from 1 block allocated in nsHttpResponseHead::ParseStatusLine

bug 126104 r=gagan sr=darin a=asa
This commit is contained in:
badami%netscape.com 2002-02-26 03:55:59 +00:00
Родитель 0f8d140ee0
Коммит baf73a070c
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -45,7 +45,10 @@ public:
, mCacheControlNoStore(PR_FALSE)
, mCacheControlNoCache(PR_FALSE)
, mPragmaNoCache(PR_FALSE) {}
~nsHttpResponseHead() {}
~nsHttpResponseHead()
{
Reset();
}
nsHttpHeaderArray &Headers() { return mHeaders; }
nsHttpVersion Version() { return mVersion; }