From deee574b1198a2886369f4ecbfbeaa6f851bb41d Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Fri, 13 Oct 2006 23:17:30 +0000 Subject: [PATCH] Added a paranoid length check. --- flist.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 -- 2.34.1