Update the copyright year.
[rsync/rsync.git] / exclude.c
index c0dc3bd..5fa6e00 100644 (file)
--- a/exclude.c
+++ b/exclude.c
@@ -4,7 +4,7 @@
  * Copyright (C) 1996-2001 Andrew Tridgell <tridge@samba.org>
  * Copyright (C) 1996 Paul Mackerras
  * Copyright (C) 2002 Martin Pool
- * Copyright (C) 2003-2008 Wayne Davison
+ * Copyright (C) 2003-2009 Wayne Davison
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -480,7 +480,7 @@ static BOOL setup_merge_file(int mergelist_num, struct filter_struct *ex,
 
 struct local_filter_state {
        int mergelist_cnt;
-       struct filter_list_struct mergelists[0];
+       struct filter_list_struct mergelists[1];
 };
 
 /* Each time rsync changes to a new directory it call this function to
@@ -505,7 +505,7 @@ void *push_local_filters(const char *dir, unsigned int dirlen)
 
        push = (struct local_filter_state *)new_array(char,
                          sizeof (struct local_filter_state)
-                       + mergelist_cnt * sizeof (struct filter_list_struct));
+                       + (mergelist_cnt-1) * sizeof (struct filter_list_struct));
        if (!push)
                out_of_memory("push_local_filters");