From: Wayne Davison Date: Fri, 13 Oct 2006 23:17:30 +0000 (+0000) Subject: Added a paranoid length check. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/deee574b1198a2886369f4ecbfbeaa6f851bb41d Added a paranoid length check. --- diff --git a/flist.c b/flist.c index 7e4eef55..e8043c57 100644 --- a/flist.c +++ b/flist.c @@ -1228,8 +1228,11 @@ struct file_list *send_file_list(int f, int argc, char *argv[]) } } - if (fn != fbuf) + if (fn != fbuf) { + if (len >= MAXPATHLEN) + overflow_exit("send_file_list"); memmove(fbuf, fn, len + 1); + } if (implied_dirs && (p=strrchr(fbuf,'/')) && p != fbuf) { /* Send the implied directories at the start of the