Fix for bug 6785. Incorrect reinitializing of mData.

This commit is contained in:
vidur%netscape.com 1999-06-12 00:37:36 +00:00
Родитель b6bc53c895
Коммит 1aa9f07f1b
2 изменённых файлов: 6 добавлений и 2 удалений

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

@ -74,10 +74,12 @@ nsContentList::nsContentList(nsIDocument *aDocument,
mData = new nsString(*aData);
// If this fails, fail silently
}
else {
mData = nsnull;
}
mMatchAtom = nsnull;
mRootContent = aRootContent;
mMatchAll = PR_FALSE;
mData = nsnull;
Init(aDocument);
}

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

@ -74,10 +74,12 @@ nsContentList::nsContentList(nsIDocument *aDocument,
mData = new nsString(*aData);
// If this fails, fail silently
}
else {
mData = nsnull;
}
mMatchAtom = nsnull;
mRootContent = aRootContent;
mMatchAll = PR_FALSE;
mData = nsnull;
Init(aDocument);
}