| Index: src/runtime.cc
|
| diff --git a/src/runtime.cc b/src/runtime.cc
|
| index db0aabe7a431e77b13056d79a929360a3c0d5634..6de0f081a1e1fbafcdb3f5904f42742ba9b106b0 100644
|
| --- a/src/runtime.cc
|
| +++ b/src/runtime.cc
|
| @@ -3361,7 +3361,9 @@ static RegExpImpl::IrregexpResult SearchRegExpMultiple(
|
| if (start >= 0) {
|
| int end = register_vector[i * 2 + 1];
|
| ASSERT(start <= end);
|
| - Handle<String> substring = Factory::NewSubString(subject, start, end);
|
| + Handle<String> substring = Factory::NewSubString(subject,
|
| + start,
|
| + end);
|
| elements->set(i, *substring);
|
| } else {
|
| ASSERT(register_vector[i * 2 + 1] < 0);
|
|
|