author | Michael Krelin <hacker@klever.net> | 2012-01-20 21:49:19 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2012-01-20 21:49:19 (UTC) |
commit | 8e34d78443b8b53e90900fc9e2f7b4d7366596b0 (patch) (unidiff) | |
tree | 21017b3ef5f3be00b96814b841aa605a645b6ef7 /src/eyekinfig.cc | |
parent | 2c469d2d891899dbb51a6125fec3980dac6a7ec0 (diff) | |
download | iii-8e34d78443b8b53e90900fc9e2f7b4d7366596b0.zip iii-8e34d78443b8b53e90900fc9e2f7b4d7366596b0.tar.gz iii-8e34d78443b8b53e90900fc9e2f7b4d7366596b0.tar.bz2 |
initialize config's "cfg" to null
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | src/eyekinfig.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eyekinfig.cc b/src/eyekinfig.cc index 6dde7b2..79cec80 100644 --- a/src/eyekinfig.cc +++ b/src/eyekinfig.cc | |||
@@ -5,7 +5,7 @@ | |||
5 | 5 | ||
6 | #include "config.h" | 6 | #include "config.h" |
7 | 7 | ||
8 | eyekinfig_t::eyekinfig_t(const std::string& ma) : macaddress(ma) { | 8 | eyekinfig_t::eyekinfig_t(const std::string& ma) : macaddress(ma), cfg(0) { |
9 | try { | 9 | try { |
10 | static cfg_opt_t opts[] = { | 10 | static cfg_opt_t opts[] = { |
11 | CFG_STR((char*)"targetdir",(char*)"/var/lib/" PACKAGE "/%s",CFGF_NONE), | 11 | CFG_STR((char*)"targetdir",(char*)"/var/lib/" PACKAGE "/%s",CFGF_NONE), |