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

Commit 94d0898

Browse files
committed
Review feedback 2
1 parent e34a9b7 commit 94d0898

File tree

1 file changed

+2
-2
lines changed
  • src/Microsoft.AspNet.Server.Kestrel/Http

1 file changed

+2
-2
lines changed

src/Microsoft.AspNet.Server.Kestrel/Http/Frame.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -633,11 +633,11 @@ private bool TakeStartLine(SocketInput input)
633633
pathEnd = UrlPathDecoder.Unescape(pathBegin, pathEnd);
634634
}
635635

636-
var requestUri = pathBegin.GetString(pathEnd);
636+
var requestUrlPath = pathBegin.GetString(pathEnd);
637637

638638
consumed = scan;
639639
Method = method;
640-
RequestUri = requestUri;
640+
RequestUri = requestUrlPath;
641641
QueryString = queryString;
642642
HttpVersion = httpVersion;
643643
Path = RequestUri;

0 commit comments

Comments
 (0)