From 33405111d53ac0288adbd2881f3e5a7c1cacc999 Mon Sep 17 00:00:00 2001 From: Joel Klinghed Date: Thu, 18 Nov 2021 00:19:49 +0100 Subject: send_file: Make sure send file header value contains the right amount of slashes --- src/send_file.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/send_file.cc b/src/send_file.cc index 8611b6f..e5bf92b 100644 --- a/src/send_file.cc +++ b/src/send_file.cc @@ -29,7 +29,11 @@ public: } auto resp = transport->create_ok_data(""); - resp->add_header(header_, path_ + std::string(relative_path)); + std::string value = path_; + if (relative_path.empty() || relative_path.front() != '/') + value.push_back('/'); + value.append(relative_path); + resp->add_header(header_, std::move(value)); return resp; } -- cgit v1.2.3-70-g09d2