Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/core/credentials/call/regional_access_boundary_fetcher.cc
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ void RegionalAccessBoundaryFetcher::Request::OnResponse(
if (fetcher == nullptr) return;
bool success = false;
std::string encoded_locations;
absl::string_view response_body = "";
absl::string_view response_body;
if (response_.body != nullptr) {
response_body = absl::string_view(response_.body, response_.body_length);
}
Expand Down Expand Up @@ -287,7 +287,7 @@ class EmailFetcher::EmailRequest final
void OnResponse(grpc_error_handle error) {
auto fetcher = fetcher_->RefIfNonZero();
if (fetcher == nullptr) return;
absl::string_view response_body = "";
absl::string_view response_body;
if (response_.body != nullptr) {
response_body = absl::string_view(response_.body, response_.body_length);
}
Expand Down