fix leak of charset string. bug 176989, patch by keeda@hotpop.com,

r=peterv, sr=jst
This commit is contained in:
bzbarsky%mit.edu 2002-11-08 10:52:06 +00:00
Родитель afc0dd96b3
Коммит bce74cf4fe
1 изменённых файлов: 3 добавлений и 3 удалений

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

@ -979,9 +979,9 @@ nsHTMLDocument::StartDocumentLoad(const char* aCommand,
}
if (isPostPage && muCV && kCharsetFromHintPrevDoc > charsetSource) {
PRUnichar* requestCharset;
muCV->GetPrevDocCharacterSet(&requestCharset);
if (*requestCharset) {
nsXPIDLString requestCharset;
muCV->GetPrevDocCharacterSet(getter_Copies(requestCharset));
if (!requestCharset.IsEmpty()) {
charsetSource = kCharsetFromHintPrevDoc;
charset = requestCharset;
}