* src/names.c (collect_and_sort_names): Initialize prev_name.
Reported by Dmitry V. Levin.
This commit is contained in:
Sergey Poznyakoff
2010-03-11 12:19:32 +02:00
parent e8e0b6cb7a
commit a3f1d933cc

View File

@@ -871,7 +871,7 @@ void
collect_and_sort_names (void)
{
struct name *name;
struct name *next_name, *prev_name;
struct name *next_name, *prev_name = NULL;
int num_names;
struct stat statbuf;
Hash_table *nametab;