Skip to content

Commit 1160739

Browse files
CEL Dev Teamcopybara-github
authored andcommitted
No public description
PiperOrigin-RevId: 862609060
1 parent c908abe commit 1160739

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

eval/public/structs/cel_proto_wrap_util.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ class DynamicMap : public CelMap {
166166

167167
private:
168168
void CheckInit() const {
169-
absl::MutexLock lock(&mutex_);
169+
absl::MutexLock lock(mutex_);
170170
if (!initialized_) {
171171
for (const auto& it : values_->fields()) {
172172
keys_.push_back(CelValue::CreateString(&it.first));

eval/public/structs/protobuf_descriptor_type_provider.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ ProtobufDescriptorProvider::CreateTypeAdapter(absl::string_view name) const {
5757

5858
const ProtoMessageTypeAdapter* ProtobufDescriptorProvider::GetTypeAdapter(
5959
absl::string_view name) const {
60-
absl::MutexLock lock(&mu_);
60+
absl::MutexLock lock(mu_);
6161
auto it = type_cache_.find(name);
6262
if (it != type_cache_.end()) {
6363
return it->second.get();

0 commit comments

Comments
 (0)