# HG changeset patch # User zas_ # Date 1207262390 0 # Node ID b932b6928e20300f6f7c80749813d52eab46d802 # Parent 33d06ce2ec61a46092813916c0ce8a9f6f98625a Initialize variables, clearing a gcc warning. diff -r 33d06ce2ec61 -r b932b6928e20 src/bar_info.c --- a/src/bar_info.c Thu Apr 03 22:33:28 2008 +0000 +++ b/src/bar_info.c Thu Apr 03 22:39:50 2008 +0000 @@ -325,8 +325,10 @@ gint comment_read(FileData *fd, GList **keywords, gchar **comment) { - GList *keywords1, *keywords2; - gchar *comment1, *comment2; + GList *keywords1 = NULL; + GList *keywords2 = NULL; + gchar *comment1 = NULL; + gchar *comment2 = NULL; gint res1, res2; if (!fd) return FALSE;