Skip to content
This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Commit d25b192

Browse files
committed
Fix bug
1 parent 1ead070 commit d25b192

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.Net.Http.Headers/HeaderUtilities.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,8 +278,8 @@ private static unsafe bool TryParseInt64FromHeaderValue(int startIndex, string h
278278
var length = 0;
279279

280280
var ch = (ushort*)ptr;
281-
ch += startIndex;
282281
var end = ch + headerValue.Length;
282+
ch += startIndex;
283283

284284
while (ch < end)
285285
{

0 commit comments

Comments
 (0)