web_service: avoid undefined behavior assert of std::string::back (#7347)

Co-authored-by: BuildTools <unconfigured@null.spigotmc.org>
This commit is contained in:
xperia64 2024-01-12 23:24:01 -05:00 committed by GitHub
parent a177769c3b
commit da9f382d2c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,7 +30,7 @@ struct Client::Impl {
jwt = jwt_cache.jwt;
}
// normalize host expression
if (this->host.back() == '/') {
if (!this->host.empty() && this->host.back() == '/') {
static_cast<void>(this->host.pop_back());
}
}