Skip to content

Commit 84a5963

Browse files
authored
Replace the deprecated Base64Escape function call (#15820)
1 parent 0899ce8 commit 84a5963

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Firestore/core/src/local/leveldb_key.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ model::SnapshotVersion Reader::ReadSnapshotVersion() {
574574
*/
575575
std::string InvalidKey(leveldb::Slice key) {
576576
std::string result;
577-
absl::Base64Escape(MakeStringView(key), &result);
577+
result = absl::Base64Escape(MakeStringView(key));
578578
return result;
579579
}
580580

0 commit comments

Comments
 (0)