diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-06-04 16:39:55 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-06-04 16:39:55 +0100 |
| commit | 10b4bf78da1dcdb96915506bd61a0ab1b2ea65ed (patch) | |
| tree | b8c02c90f4833574da71e3e6518a8d952a0bb1ca /src/lib/log.cc | |
| parent | 4a74ca2cb973585122e84c21ff48ff4ff1ebd488 (diff) | |
Fix crash due to lack of signal disconnection.
Diffstat (limited to 'src/lib/log.cc')
| -rw-r--r-- | src/lib/log.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/log.cc b/src/lib/log.cc index 52dff2982..4de6bd874 100644 --- a/src/lib/log.cc +++ b/src/lib/log.cc @@ -39,7 +39,7 @@ int const Log::TYPE_TIMING = 0x8; Log::Log () : _types (0) { - Config::instance()->Changed.connect (boost::bind (&Log::config_changed, this)); + _config_connection = Config::instance()->Changed.connect (boost::bind (&Log::config_changed, this)); config_changed (); } |
