2 * Copyright (C) 2003 Ross Burton <ross@burtonini.com>
4 * Sound Juicer - sj-structures.c
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 * Authors: Ross Burton <ross@burtonini.com>
23 #include "sj-structures.h"
24 #include <glib/gmessages.h>
25 #include <glib/glist.h>
28 * Free a TrackDetails*
30 void track_details_free(TrackDetails
*track
)
32 g_return_if_fail (track
!= NULL
);
33 g_free (track
->title
);
34 g_free (track
->artist
);
35 g_free (track
->track_id
);
36 g_free (track
->artist_id
);
37 g_free (track
->artist_sortname
);
42 * Free a AlbumDetails*
44 void album_details_free(AlbumDetails
*album
)
46 g_return_if_fail (album
!= NULL
);
47 g_free (album
->title
);
48 g_free (album
->artist
);
49 g_free (album
->genre
);
50 g_free (album
->album_id
);
51 if (album
->release_date
) g_date_free (album
->release_date
);
52 g_list_foreach (album
->tracks
, (GFunc
)track_details_free
, NULL
);
53 g_list_free (album
->tracks
);
54 g_free (album
->artist_sortname
);