common/config: fix the lock in ConfigProxy::diff()

it's a regression introduced by e406d8eb9e

Signed-off-by: Kefu Chai <kchai@redhat.com>
This commit is contained in:
Kefu Chai 2018-07-27 12:13:42 +08:00
parent f89bde3f93
commit 40e76aa4f0

View File

@ -71,8 +71,8 @@ public:
return config.find_option(name);
}
void diff(Formatter *f, const std::string& name=string{}) const {
return config.diff(values, f, name);
Mutex::Locker l{lock};
return config.diff(values, f, name);
}
void get_my_sections(std::vector <std::string> &sections) const {
Mutex::Locker l{lock};