diff options
author | Thibaut Mattern <tmattern@users.sourceforge.net> | 2005-09-02 22:39:42 +0000 |
---|---|---|
committer | Thibaut Mattern <tmattern@users.sourceforge.net> | 2005-09-02 22:39:42 +0000 |
commit | 04ed94ff8f42595f4f7d13d821212da346d53605 (patch) | |
tree | 9e2c5cf6c9798ce56f823a680c1e7e7e1bf68b9a /src/input/input_file.c | |
parent | f7b05e4b69f0f17b8658ea30714029644d10b2a5 (diff) | |
download | xine-lib-04ed94ff8f42595f4f7d13d821212da346d53605.tar.gz xine-lib-04ed94ff8f42595f4f7d13d821212da346d53605.tar.bz2 |
Unregister config callbacks.
CVS patchset: 7716
CVS date: 2005/09/02 22:39:42
Diffstat (limited to 'src/input/input_file.c')
-rw-r--r-- | src/input/input_file.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/input/input_file.c b/src/input/input_file.c index 252bf4b50..cc8be66c0 100644 --- a/src/input/input_file.c +++ b/src/input/input_file.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: input_file.c,v 1.103 2005/08/25 15:36:29 valtri Exp $ + * $Id: input_file.c,v 1.104 2005/09/02 22:39:43 tmattern Exp $ */ #ifdef HAVE_CONFIG_H @@ -851,6 +851,9 @@ static xine_mrl_t **file_class_get_dir (input_class_t *this_gen, static void file_class_dispose (input_class_t *this_gen) { file_input_class_t *this = (file_input_class_t *) this_gen; + config_values_t *config = this->xine->config; + + config->unregister_callback(config, "media.files.origin_path"); free (this->mrls); free (this); |