app_confbridge: Fix memory leak on reload.

The config framework options should not be registered multiple times.
Instead the configuration just needs to be reprocessed by the config
framework.


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@391700 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Richard Mudgett
2013-06-13 18:47:48 +00:00
parent 7e0ebaa2e0
commit 365e81053b
3 changed files with 21 additions and 14 deletions

View File

@@ -244,7 +244,10 @@ struct conference_bridge_user {
};
/*! \brief load confbridge.conf file */
int conf_load_config(int reload);
int conf_load_config(void);
/*! \brief reload confbridge.conf file */
int conf_reload_config(void);
/*! \brief destroy the information loaded from the confbridge.conf file*/
void conf_destroy_config(void);