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_vcd.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_vcd.c')
-rw-r--r-- | src/input/input_vcd.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/input/input_vcd.c b/src/input/input_vcd.c index 89022d9d3..e6fafe07b 100644 --- a/src/input/input_vcd.c +++ b/src/input/input_vcd.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_vcd.c,v 1.79 2005/02/07 23:58:58 tmattern Exp $ + * $Id: input_vcd.c,v 1.80 2005/09/02 22:39:43 tmattern Exp $ * */ @@ -930,6 +930,9 @@ static void vcd_class_dispose (input_class_t *this_gen) { vcd_input_class_t *this = (vcd_input_class_t *) this_gen; int i; + config_values_t *config = this->xine->config; + + config->unregister_callback(config, "media.vcd.device"); for (i = 0; i < 100; i++) free (this->filelist[i]); |