comparison src/audacious/titlestring.c @ 2560:5511818eb9d3 trunk

[svn] - added custom field in tuple, for internal use by plugins or by whatever wanting to use it
author giacomo
date Wed, 21 Feb 2007 15:02:54 -0800
parents 864c12eafb49
children c0e5cf2273ad
comparison
equal deleted inserted replaced
2559:b474ecb5bde4 2560:5511818eb9d3
90 if (input->file_name != NULL) 90 if (input->file_name != NULL)
91 g_free(input->file_name); 91 g_free(input->file_name);
92 92
93 if (input->file_path != NULL) 93 if (input->file_path != NULL)
94 g_free(input->file_path); 94 g_free(input->file_path);
95
96 if (input->custom != NULL)
97 g_free(input->custom);
95 98
96 g_free(input); 99 g_free(input);
97 } 100 }
98 101
99 /** 102 /**