This commit is contained in:
valeski%netscape.com 1999-09-01 20:07:50 +00:00
Родитель cd9ac1155d
Коммит 415f7f7492
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -166,6 +166,7 @@ nsMultiMixedConv::OnDataAvailable(nsIChannel *channel, nsISupports *ctxt,
nsCString headerStr(headerStart);
headerStr.ToLowerCase();
nsIAtom *header = NS_NewAtom(headerStr.GetBuffer());
if (!header) return NS_ERROR_OUT_OF_MEMORY;
*colon = ':';
nsCString headerVal(colon + 1);
@ -173,9 +174,11 @@ nsMultiMixedConv::OnDataAvailable(nsIChannel *channel, nsISupports *ctxt,
if (headerStr == "content-type") {
contentTypeStr = headerVal;
NS_RELEASE(header);
} else {
// XXX we need a way to set other header's such as cookies :/
// XXX maybe we just handle cookies directly here.
NS_RELEASE(header);
}
}