diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-09-15 11:35:08 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2002-09-15 11:35:08 +0000 |
commit | 15b88c72e2127db8a66b5f2771a3217a98f26b8c (patch) | |
tree | 0f36e02354652219e3338ba5aa7f9d3c20a1b8f8 /src/xine-engine/configfile.h | |
parent | c9858d165494b8aa499fca8f8d7c476c5b20a471 (diff) | |
download | xine-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.h')
-rw-r--r-- | src/xine-engine/configfile.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/xine-engine/configfile.h b/src/xine-engine/configfile.h index 950400dae..6544a7e69 100644 --- a/src/xine-engine/configfile.h +++ b/src/xine-engine/configfile.h @@ -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.h,v 1.16 2002/09/14 20:11:52 guenter Exp $ + * $Id: configfile.h,v 1.17 2002/09/15 11:35:09 jcdutton Exp $ * * config file management * @@ -168,6 +168,11 @@ struct config_values_s { */ void (*unregister_callback) (config_values_t *this, const char *key); + /* + * dispose of all config entries in memory + */ + void (*dispose) (config_values_t *this); + /* * config values are stored here: */ |