Fix bug where only first property was being returned.

This commit is contained in:
waterson%netscape.com 1999-09-21 07:34:07 +00:00
Родитель 3d53ecd956
Коммит 51f33b758d
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -635,7 +635,7 @@ nsRegistryDataSource::ArcLabelsOut(nsIRDFResource *aSource, nsISimpleEnumerator
if (NS_FAILED(rv)) return rv;
array->AppendElement(property);
} while (0);
} while (1);
}
return NS_NewArrayEnumerator(_retval, array);