| Index: runtime/bin/process.cc
|
| diff --git a/runtime/bin/process.cc b/runtime/bin/process.cc
|
| index 4a87e296e9d5255dbe38258488bc5df39ae60ded..3896505736664f1cfd510583765116adead67699 100644
|
| --- a/runtime/bin/process.cc
|
| +++ b/runtime/bin/process.cc
|
| @@ -34,7 +34,7 @@ static char** ExtractCStringList(Dart_Handle strings,
|
| }
|
| // Protect against user-defined list implementations that can have
|
| // arbitrary length.
|
| - if (len < 0 || len > kMaxArgumentListLength) {
|
| + if ((len < 0) || (len > kMaxArgumentListLength)) {
|
| result = DartUtils::SetIntegerField(status_handle, "_errorCode", 0);
|
| if (Dart_IsError(result)) {
|
| Dart_PropagateError(result);
|
|
|