| Index: sdk/lib/io/mime_multipart_parser.dart
|
| diff --git a/sdk/lib/io/mime_multipart_parser.dart b/sdk/lib/io/mime_multipart_parser.dart
|
| index cd12c2023394413046e0dd2449b8d8b8d416ba0a..e757c75df553b2ac9d907e94cf00d81c9d6bd2d9 100644
|
| --- a/sdk/lib/io/mime_multipart_parser.dart
|
| +++ b/sdk/lib/io/mime_multipart_parser.dart
|
| @@ -49,7 +49,7 @@ class _MimeMultipartParser {
|
| _boundary[1] = _CharCode.LF;
|
| _boundary[2] = _CharCode.DASH;
|
| _boundary[3] = _CharCode.DASH;
|
| - _boundary.setRange(4, charCodes.length, charCodes);
|
| + _boundary.setRange(4, 4 + charCodes.length, charCodes);
|
| _state = _START;
|
| _headerField = new StringBuffer();
|
| _headerValue = new StringBuffer();
|
|
|