last bit in activating charset override

This commit is contained in:
cata%netscape.com 2000-03-03 02:21:24 +00:00
Родитель eaf963e925
Коммит 571ffe6149
2 изменённых файлов: 8 добавлений и 2 удалений

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

@ -401,7 +401,10 @@ nsXMLDocument::StartDocumentLoad(const char* aCommand,
{
PRUnichar* forceCharsetFromWebShell = NULL;
if (muCV) {
rv = muCV->GetForceCharacterSet(&forceCharsetFromWebShell);
rv = muCV->GetForceCharacterSet(&forceCharsetFromWebShell);
if ((NULL != forceCharsetFromWebShell) && (0 != forceCharsetFromWebShell[0])) {
muCV->SetForceCharacterSet(NULL);
}
}
if(NS_SUCCEEDED(rv) && (nsnull != forceCharsetFromWebShell))
{

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

@ -401,7 +401,10 @@ nsXMLDocument::StartDocumentLoad(const char* aCommand,
{
PRUnichar* forceCharsetFromWebShell = NULL;
if (muCV) {
rv = muCV->GetForceCharacterSet(&forceCharsetFromWebShell);
rv = muCV->GetForceCharacterSet(&forceCharsetFromWebShell);
if ((NULL != forceCharsetFromWebShell) && (0 != forceCharsetFromWebShell[0])) {
muCV->SetForceCharacterSet(NULL);
}
}
if(NS_SUCCEEDED(rv) && (nsnull != forceCharsetFromWebShell))
{