Skip to content

Commit 20e871f

Browse files
pybind11_protobuf authorscopybara-github
authored andcommitted
Automated Code Change
PiperOrigin-RevId: 805611259
1 parent 87ec9af commit 20e871f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pybind11_protobuf/check_unknown_fields.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ bool MessageMayContainExtensionsRecursive(const ::google::protobuf::Descriptor*
6262
bool MessageMayContainExtensionsMemoized(const ::google::protobuf::Descriptor* descriptor) {
6363
static auto* memoized = new MayContainExtensionsMap();
6464
static absl::Mutex lock;
65-
absl::MutexLock l(&lock);
65+
absl::MutexLock l(lock);
6666
return MessageMayContainExtensionsRecursive(descriptor, memoized);
6767
}
6868

0 commit comments

Comments
 (0)