summaryrefslogtreecommitdiff
path: root/src/common/HPM.c
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2015-08-28 02:45:20 +0200
committerHaru <haru@dotalux.com>2015-09-08 10:28:09 +0200
commit860f4eb744af463dd4a0e7d11e7882973ccf1e44 (patch)
tree504474d504267378c41032fec51f3ee148e36edd /src/common/HPM.c
parent1cfcb9df15419adf67353098c1c69b61f5c93baf (diff)
downloadhercules-860f4eb744af463dd4a0e7d11e7882973ccf1e44.tar.gz
hercules-860f4eb744af463dd4a0e7d11e7882973ccf1e44.tar.bz2
hercules-860f4eb744af463dd4a0e7d11e7882973ccf1e44.tar.xz
hercules-860f4eb744af463dd4a0e7d11e7882973ccf1e44.zip
Fixed some memory leaks in code using libconfig
- Special thanks to Dastgir Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/common/HPM.c')
-rw-r--r--src/common/HPM.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/HPM.c b/src/common/HPM.c
index a78f03daa..6d68d6ed6 100644
--- a/src/common/HPM.c
+++ b/src/common/HPM.c
@@ -580,8 +580,8 @@ void hplugins_config_read(void) {
snprintf(filename, 60, "plugins/%s%s", libconfig->setting_get_string_elem(plist,i), DLL_EXT);
HPM->load(filename);
}
- libconfig->destroy(&plugins_conf);
}
+ libconfig->destroy(&plugins_conf);
if( HPM->plugin_count )
ShowStatus("HPM: There are '"CL_WHITE"%d"CL_RESET"' plugins loaded, type '"CL_WHITE"plugins"CL_RESET"' to list them\n", HPM->plugin_count);