Changed "count" to "used" in struct file_list since there can
[rsync.git] / hlink.c
diff --git a/hlink.c b/hlink.c
index 785a88275a734cd6298d55ce5756d0a43df9df38..b89b4d27c36ddc9455d5903c54df64d85f446a67 100644 (file)
--- a/hlink.c
+++ b/hlink.c
@@ -259,10 +259,10 @@ void match_hard_links(void)
        int i, ndx_count = 0;
        int32 *ndx_list;
 
-       if (!(ndx_list = new_array(int32, cur_flist->count)))
+       if (!(ndx_list = new_array(int32, cur_flist->used)))
                out_of_memory("match_hard_links");
 
-       for (i = 0; i < cur_flist->count; i++) {
+       for (i = 0; i < cur_flist->used; i++) {
                if (F_IS_HLINKED(cur_flist->sorted[i]))
                        ndx_list[ndx_count++] = i;
        }