From: Wayne Davison Date: Thu, 5 Aug 2004 22:58:17 +0000 (+0000) Subject: Set "eob" correctly in add_exclude_file(). X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/7cd72c79ec1c7f803ca6859f53cf8d9a78d6abf2 Set "eob" correctly in add_exclude_file(). --- diff --git a/exclude.c b/exclude.c index 8dab79fe..d02c462c 100644 --- a/exclude.c +++ b/exclude.c @@ -322,7 +322,7 @@ void add_exclude_file(struct exclude_list_struct *listp, const char *fname, { FILE *fp; char line[MAXPATHLEN+3]; /* Room for "x " prefix and trailing slash. */ - char *eob = line + MAXPATHLEN - 1; + char *eob = line + sizeof line - 1; int word_split = xflags & XFLG_WORD_SPLIT; if (!fname || !*fname)