changeset 3567:5c6994da98c3 trunk

Automated merge with ssh://hg.atheme.org//hg/audacious
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 18 Sep 2007 23:54:18 +0300
parents 97b10cd95da2 (diff) 21601ce39fa1 (current diff)
children 08340a70fa6c
files
diffstat 2 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/audacious/tuple.c	Tue Sep 18 21:22:09 2007 +0200
+++ b/src/audacious/tuple.c	Tue Sep 18 23:54:18 2007 +0300
@@ -100,6 +100,8 @@
     gint i;
 
     TUPLE_LOCK_WRITE();
+    g_free(tuple->subtunes);
+    
     mowgli_dictionary_destroy(tuple->dict, tuple_value_destroy, NULL);
 
     for (i = 0; i < FIELD_LAST; i++)
--- a/src/audacious/tuple.h	Tue Sep 18 21:22:09 2007 +0200
+++ b/src/audacious/tuple.h	Tue Sep 18 23:54:18 2007 +0300
@@ -82,6 +82,7 @@
     mowgli_object_t parent;
     mowgli_dictionary_t *dict;
     TupleValue *values[FIELD_LAST];
+    gint *subtunes;	/* Temporary field for delivering subtune numbers */
 } Tuple;