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
2 changes: 1 addition & 1 deletion runtime/activation.cc
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ absl::StatusOr<bool> Activation::ProvideValue(
const google::protobuf::DescriptorPool* absl_nonnull descriptor_pool,
google::protobuf::MessageFactory* absl_nonnull message_factory,
google::protobuf::Arena* absl_nonnull arena, Value* absl_nonnull result) const {
absl::MutexLock lock(&mutex_);
absl::MutexLock lock(mutex_);
auto iter = values_.find(name);
ABSL_ASSERT(iter != values_.end());
ValueEntry& entry = iter->second;
Expand Down