Fix some Dead Store (Dead initialization) Warning found by Clang

svn path=/trunk/; revision=46978
This commit is contained in:
Alexis La Goutte 2013-01-06 19:13:33 +00:00
parent 9520710d83
commit 86e16b4f61
1 changed files with 1 additions and 1 deletions

View File

@ -2346,7 +2346,7 @@ static char *
join_string_list(GList *sl)
{
GString *joined_str = g_string_new("");
GList *cur, *first = g_list_first(sl);
GList *cur, *first;
gchar *str;
gchar *quoted_str;
guint item_count = 0;