From 99eba67585c79180be72ea10889ae7eec61f9034 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 14 Oct 2006 01:17:36 +0000 Subject: [PATCH] Got rid of the recent paranoid length check because it didn't help to silence a code-checker warning. --- flist.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/flist.c b/flist.c index 55a6499d..08a75b26 100644 --- a/flist.c +++ b/flist.c @@ -1228,11 +1228,8 @@ struct file_list *send_file_list(int f, int argc, char *argv[]) } } - if (fn != fbuf) { - if (len >= MAXPATHLEN) - overflow_exit("send_file_list"); + if (fn != fbuf) memmove(fbuf, fn, len + 1); - } if (implied_dirs && (p=strrchr(fbuf,'/')) && p != fbuf) { /* Send the implied directories at the start of the -- 2.34.1