init: fix StopSendingMessages()
A typo made this function a no-op.
Bug: 150863651
Test: CF responds to messages appropriately
Merged-In: Iaae0264fae3f2b899ceb5ba0364a4773df1f7ca3
Change-Id: Iaae0264fae3f2b899ceb5ba0364a4773df1f7ca3
(cherry picked from commit 68855276a1)
This commit is contained in:
parent
9c83185c1e
commit
43374ce9c1
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue