Skip to content

Commit 7228685

Browse files
Koladata Teamcopybara-github
authored andcommitted
No public description
PiperOrigin-RevId: 872151115 Change-Id: I3a2aac64776b7cabdfee6cfbf7208124fe36e724
1 parent 0ed901a commit 7228685

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

koladata/operators/strings.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ struct DecodeBase64Op {
188188
struct EncodeBase64Op {
189189
arolla::Text operator()(absl::string_view x) const {
190190
std::string dst;
191-
absl::Base64Escape(x, &dst);
191+
dst = absl::Base64Escape(x);
192192
return arolla::Text(std::move(dst));
193193
}
194194

0 commit comments

Comments
 (0)