From e533a26dcff611f312e5bfce47061d2155476c42 Mon Sep 17 00:00:00 2001 From: Joachim Priesner Date: Thu, 22 Oct 2020 18:29:49 +0200 Subject: [PATCH] ntdll: Fix read buffer overflow in find_file_in_dir(). Signed-off-by: Joachim Priesner Signed-off-by: Alexandre Julliard --- dlls/ntdll/unix/file.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/ntdll/unix/file.c b/dlls/ntdll/unix/file.c index afb552be098..d12a3ffb119 100644 --- a/dlls/ntdll/unix/file.c +++ b/dlls/ntdll/unix/file.c @@ -2550,6 +2550,8 @@ static NTSTATUS find_file_in_dir( char *unix_name, int pos, const WCHAR *name, i goto not_found; } } + /* if that did not work, restore previous state of unix_name */ + unix_name[pos - 1] = 0; } close( fd ); }