We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ee1d41 commit bf382ccCopy full SHA for bf382cc
1 file changed
ext/http.cpp
@@ -470,7 +470,8 @@ bool HttpConnection_t::_InterpretRequest (const char *header)
470
const char *questionmark = strchr (blank, '?');
471
if (questionmark && (questionmark >= blank2))
472
questionmark = NULL;
473
- const char *fragment = strpbrk ((questionmark ? (questionmark+1) : blank), "#;");
+ // const char *fragment = strpbrk ((questionmark ? (questionmark+1) : blank), "#;");
474
+ const char *fragment = strpbrk ((questionmark ? (questionmark+1) : blank), "#");
475
if (fragment && (fragment >= blank2))
476
fragment = NULL;
477
0 commit comments