diff options
Diffstat (limited to 'zenhttp/httpserver.cpp')
| -rw-r--r-- | zenhttp/httpserver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zenhttp/httpserver.cpp b/zenhttp/httpserver.cpp index 62b8d11a1..c8e11468e 100644 --- a/zenhttp/httpserver.cpp +++ b/zenhttp/httpserver.cpp @@ -400,7 +400,7 @@ HttpServerRequest::GetQueryParams() continue; } - size_t QueryLen = ptrdiff_t(QueryEnd - QueryIt); + size_t QueryLen = ptrdiff_t(QueryEnd - QueryIt); const std::string_view Query{QueryIt, QueryLen}; size_t DelimIndex = Query.find('&', 0); |