Bug 242613 Crash [@ EncodeStructParticle] because getEnumerator returned null

r=jst sr=jst
This commit is contained in:
timeless%mozdev.org 2004-05-05 01:38:03 +00:00
Родитель 6336a2d677
Коммит e5a80eb534
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -886,7 +886,9 @@ static nsresult EncodeStructParticle(nsISOAPEncoding* aEncoding, nsIPropertyBag*
}
nsCOMPtr<nsISimpleEnumerator> e;
aPropertyBag->GetEnumerator(getter_AddRefs(e));
rc = aPropertyBag->GetEnumerator(getter_AddRefs(e));
if (NS_FAILED(rc))
return rc;
PRBool more;
rc = e->HasMoreElements(&more);
if (NS_FAILED(rc))