зеркало из https://github.com/mozilla/gecko-dev.git
Fix for bug #91378: "Find" doesnt find in some cases
Prevent FindInString() from skipping over current char when eating additional whitespace. r=brade@netscape.com rs=blake@telocity.com
This commit is contained in:
Родитель
2d3c9d9b01
Коммит
fec513fa55
|
@ -425,7 +425,7 @@ static PRInt32 FindInString(const nsString &searchStr, const nsString &patternSt
|
|||
if (inWhitespace && !nsCRT::IsAsciiSpace(*p))
|
||||
{
|
||||
// leaving p whitespace. Eat up addition whitespace in s
|
||||
while (t < searchEnd - 1 && nsCRT::IsAsciiSpace(*(t + 1)))
|
||||
while (t < searchEnd - 1 && nsCRT::IsAsciiSpace(*t))
|
||||
t ++;
|
||||
|
||||
inWhitespace = PR_FALSE;
|
||||
|
|
Загрузка…
Ссылка в новой задаче