init: fix StopSendingMessages()

A typo made this function a no-op.

Bug: 150863651
Test: CF responds to messages appropriately
Change-Id: Iaae0264fae3f2b899ceb5ba0364a4773df1f7ca3
This commit is contained in:
Tom Cherry 2020-03-27 13:57:53 -07:00
parent 44a6d9a527
commit 68855276a1
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ void StartSendingMessages() {
void StopSendingMessages() {
auto lock = std::lock_guard{accept_messages_lock};
accept_messages = true;
accept_messages = false;
}
bool CanReadProperty(const std::string& source_context, const std::string& name) {