diff options
author | Jorn Baayen <jorn@openedhand.com> | 2008-07-03 12:58:58 +0000 |
---|---|---|
committer | Jorn Baayen <jorn@openedhand.com> | 2008-07-03 12:58:58 +0000 |
commit | a0be2fe4b5f12b8b07f4e3bd624b3729657f0ac5 (patch) | |
tree | a87f64444214e691bea2216de6d085db43882648 | |
parent | c7c6c89e2711b8f608b5d68dd4955ef314aaea77 (diff) | |
download | gaku-master.tar.gz gaku-master.tar.bz2 gaku-master.zip |
* main.c (tag_reader_uri_scanned_cb):
Initialise title and artist variables to NULL.
Reported by Tim Müller <tim.muller@collabora.co.uk>.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | main.c | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2008-07-03 Jorn Baayen <jorn@openedhand.com> + + * main.c (tag_reader_uri_scanned_cb): + + Initialise title and artist variables to NULL. + Reported by Tim Müller <tim.muller@collabora.co.uk>. + 2008-06-30 Jorn Baayen <jorn@openedhand.com> * Makefile.am: @@ -321,7 +321,7 @@ tag_reader_uri_scanned_cb (OwlTagReader *tag_reader, { GtkTreeModel *tree_model; GtkTreeIter iter; - char *title, *artist; + char *title = NULL, *artist = NULL; if (error) { g_warning (error->message); |