Skip to content

Commit fd71103

Browse files
[Storage] Fix build error by using std::string directly
Co-authored-by: AustinBenoit <22805659+AustinBenoit@users.noreply.github.com>
1 parent bab9b6d commit fd71103

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

storage/src/desktop/curl_requests.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ void ReturnedListResponse::MarkCompleted() {
300300
if (item_map.find(Variant("name")) != item_map.end() &&
301301
item_map[Variant("name")].is_string()) {
302302
items.push_back(storage_reference_.storage()->GetReference(
303-
item_map[Variant("name")].string_value().c_str()));
303+
item_map[Variant("name")].string_value()));
304304
}
305305
}
306306
}

0 commit comments

Comments
 (0)