| 982 while ((protocol = g_dir_read_name(log_dir)) != NULL) { |
982 while ((protocol = g_dir_read_name(log_dir)) != NULL) { |
| 983 gchar *protocol_path = g_build_filename(log_path, protocol, NULL); |
983 gchar *protocol_path = g_build_filename(log_path, protocol, NULL); |
| 984 GDir *protocol_dir; |
984 GDir *protocol_dir; |
| 985 const gchar *username; |
985 const gchar *username; |
| 986 gchar *protocol_unescaped; |
986 gchar *protocol_unescaped; |
| 987 const GList *account_iter; |
987 GList *account_iter; |
| 988 GList *accounts = NULL; |
988 GList *accounts = NULL; |
| 989 |
989 |
| 990 if ((protocol_dir = g_dir_open(protocol_path, 0, NULL)) == NULL) { |
990 if ((protocol_dir = g_dir_open(protocol_path, 0, NULL)) == NULL) { |
| 991 g_free(protocol_path); |
991 g_free(protocol_path); |
| 992 continue; |
992 continue; |