summaryrefslogtreecommitdiff
path: root/src/xine-engine/configfile.c
diff options
context:
space:
mode:
authorJames Courtier-Dutton <jcdutton@users.sourceforge.net>2002-09-15 11:35:08 +0000
committerJames Courtier-Dutton <jcdutton@users.sourceforge.net>2002-09-15 11:35:08 +0000
commit15b88c72e2127db8a66b5f2771a3217a98f26b8c (patch)
tree0f36e02354652219e3338ba5aa7f9d3c20a1b8f8 /src/xine-engine/configfile.c
parentc9858d165494b8aa499fca8f8d7c476c5b20a471 (diff)
downloadxine-lib-15b88c72e2127db8a66b5f2771a3217a98f26b8c.tar.gz
xine-lib-15b88c72e2127db8a66b5f2771a3217a98f26b8c.tar.bz2
Memory leak fixes, using a slightly modified version of the patch from
ewald@rambo.its.tudelft.nl CVS patchset: 2666 CVS date: 2002/09/15 11:35:08
Diffstat (limited to 'src/xine-engine/configfile.c')
-rw-r--r--src/xine-engine/configfile.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xine-engine/configfile.c b/src/xine-engine/configfile.c
index 9d34b108b..faf8d7155 100644
--- a/src/xine-engine/configfile.c
+++ b/src/xine-engine/configfile.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: configfile.c,v 1.30 2002/09/11 17:41:08 guenter Exp $
+ * $Id: configfile.c,v 1.31 2002/09/15 11:35:09 jcdutton Exp $
*
* config object (was: file) management - implementation
*
@@ -742,6 +742,7 @@ config_values_t *xine_config_init () {
this->parse_enum = xine_config_parse_enum;
this->lookup_entry = _xine_config_lookup_entry;
this->unregister_callback = xine_config_unregister_cb;
+ this->dispose = xine_config_dispose;
return this;
}