fix for bug 196094 - fix for topcrash in RDFServiceImpl::GetResource

reverse the order of the tests so we don't dereference off the end of a string
patch by bz
r=biesi, sr=alecf
This commit is contained in:
alecf%netscape.com 2003-03-11 15:37:32 +00:00
Родитель 4d550130c1
Коммит 509a252295
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1021,7 +1021,7 @@ RDFServiceImpl::GetResource(const nsACString& aURI, nsIRDFResource** aResource)
nsACString::const_iterator p, end;
aURI.BeginReading(p);
aURI.EndReading(end);
while (IsLegalSchemeCharacter(*p) && p != end)
while (p != end && IsLegalSchemeCharacter(*p))
++p;
nsresult rv;