зеркало из https://github.com/mozilla/pjs.git
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:
Родитель
4d550130c1
Коммит
509a252295
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче