diff options
-rw-r--r-- | ot_http.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -504,10 +504,6 @@ ssize_t http_handle_request( const int64 client_socket, char *data, size_t recv_ | |||
504 | /* This one implicitely tests strlen < 5, too -- remember, it is \n terminated */ | 504 | /* This one implicitely tests strlen < 5, too -- remember, it is \n terminated */ |
505 | if( byte_diff( data, 5, "GET /") ) HTTPERROR_400; | 505 | if( byte_diff( data, 5, "GET /") ) HTTPERROR_400; |
506 | 506 | ||
507 | /* Query string MUST terminate with SP -- we know that theres at least a '\n' where this search terminates */ | ||
508 | for( c = data + 5; *c!=' ' && *c != '\t' && *c != '\n' && *c != '\r'; ++c ) ; | ||
509 | if( *c != ' ' ) HTTPERROR_400; | ||
510 | |||
511 | /* Skip leading '/' */ | 507 | /* Skip leading '/' */ |
512 | for( c = data+4; *c == '/'; ++c); | 508 | for( c = data+4; *c == '/'; ++c); |
513 | 509 | ||