fixes bug 241147 "DecodeStructParticle fails on 'sequences' and 'choices'" r=ben sr=jst

This commit is contained in:
darin%meer.net 2004-04-21 00:54:03 +00:00
Родитель 11cc65e727
Коммит 238e51583f
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2218,7 +2218,7 @@ static nsresult DecodeStructParticle(nsISOAPEncoding* aEncoding, nsIDOMElement*
if (NS_FAILED(rc))
return rc;
nsCOMPtr<nsIDOMElement> after;
rc = DecodeStructParticle(aEncoding, aElement, child, aAttachments, aDestination, getter_AddRefs(after));
rc = DecodeStructParticle(aEncoding, next, child, aAttachments, aDestination, getter_AddRefs(after));
if (!NS_FAILED(rc)) {
next = after;
}