Cleanup: return NS_NOINTERFACE not NS_OK if getting the primary frame fails.

This commit is contained in:
pollmann%netscape.com 1999-03-02 03:22:45 +00:00
Родитель 2d4cb0b56f
Коммит fe9dc59eef
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1419,7 +1419,7 @@ nsGenericHTMLElement::GetPrimaryFrame(nsIHTMLContent* aContent,
nsIFormControlFrame *&aFormControlFrame)
{
nsIDocument* doc = nsnull;
nsresult res = NS_OK;
nsresult res = NS_NOINTERFACE;
// Get the document
if (NS_OK == aContent->GetDocument(doc)) {
if (nsnull != doc) {

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

@ -1419,7 +1419,7 @@ nsGenericHTMLElement::GetPrimaryFrame(nsIHTMLContent* aContent,
nsIFormControlFrame *&aFormControlFrame)
{
nsIDocument* doc = nsnull;
nsresult res = NS_OK;
nsresult res = NS_NOINTERFACE;
// Get the document
if (NS_OK == aContent->GetDocument(doc)) {
if (nsnull != doc) {