mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 20:32:41 +02:00
* Merging revisions r43605 from trunk:
------------------------------------------------------------------------ r43605 | michael | 2019-11-28 17:19:30 +0100 (Thu, 28 Nov 2019) | 1 line * Less errors when connection is broken (bug ID 36373) ------------------------------------------------------------------------ git-svn-id: branches/fixes_3_2@43726 -
This commit is contained in:
parent
3dae852e85
commit
0dd65110d1
@ -482,6 +482,8 @@ Var
|
|||||||
I : Integer;
|
I : Integer;
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
if aStartLine='' then
|
||||||
|
exit;
|
||||||
Request.Method:=GetNextWord(AStartLine);
|
Request.Method:=GetNextWord(AStartLine);
|
||||||
Request.URL:=GetNextWord(AStartLine);
|
Request.URL:=GetNextWord(AStartLine);
|
||||||
S:=Request.URL;
|
S:=Request.URL;
|
||||||
@ -494,7 +496,7 @@ begin
|
|||||||
S:='';
|
S:='';
|
||||||
Request.PathInfo:=S;
|
Request.PathInfo:=S;
|
||||||
S:=GetNextWord(AStartLine);
|
S:=GetNextWord(AStartLine);
|
||||||
If (Pos('HTTP/',S)<>1) then
|
If (S<>'') and (Pos('HTTP/',S)<>1) then
|
||||||
Raise EHTTPServer.CreateHelp(SErrMissingProtocol,400);
|
Raise EHTTPServer.CreateHelp(SErrMissingProtocol,400);
|
||||||
Delete(S,1,5);
|
Delete(S,1,5);
|
||||||
Request.ProtocolVersion:=trim(S);
|
Request.ProtocolVersion:=trim(S);
|
||||||
|
Loading…
Reference in New Issue
Block a user