X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/1848fd6fa125c1603fb12742392d6cb7d87212c0..557a35f55bf4cb99f5cce1d966598e11c03318cc:/flist.c diff --git a/flist.c b/flist.c index 29d75cab..b3c966ed 100644 --- a/flist.c +++ b/flist.c @@ -1120,7 +1120,9 @@ struct file_list *send_file_list(int f, int argc, char *argv[]) if (l == 2 && fname[0] == '.') { /* Turn "./" into just "." rather than "./." */ fname[1] = '\0'; - } else if (l < MAXPATHLEN) { + } else { + if (l + 1 >= MAXPATHLEN) + overflow("send_file_list"); fname[l++] = '.'; fname[l] = '\0'; }