--- http.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/http.c b/http.c index dc32290..96dd540 100644 --- a/http.c +++ b/http.c _AT_@ -761,6 +761,11 @@ http_prepare_response(const struct request *req, struct response *res, goto err; } } + /* copy the found index back to the final path */ + if (esnprintf(res->path, sizeof(res->path), "%s", tmpuri)) { + s = S_REQUEST_TOO_LARGE; + goto err; + } } /* modified since */ -- 2.28.0Received on Sun Jan 17 2021 - 14:41:55 CET
This archive was generated by hypermail 2.3.0 : Sun Jan 17 2021 - 14:48:37 CET