Fix XPCOM_BREAK_ON_LOAD by restoring pre-string-branch Find() behavior when starting index is negative. Bug 243429, r+sr=darin

This commit is contained in:
bryner%brianryner.com 2004-05-12 19:26:30 +00:00
Родитель 37d5442c36
Коммит e94dce05c6
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -905,7 +905,11 @@ Find_ComputeSearchRange( PRUint32 bigLen, PRUint32 littleLen, PRInt32& offset, P
{
// |count| specifies how many iterations to make from |offset|
if (offset < 0 || PRUint32(offset) > bigLen)
if (offset < 0)
{
offset = 0;
}
else if (PRUint32(offset) > bigLen)
{
count = 0;
return;