From: Vijay Kiran Kamuju Subject: [PATCH] kernel32: NeedCurrentDirectoryForExePath does not use the registry. Message-Id: <20190417085725.2258-1-infyquest@gmail.com> Date: Wed, 17 Apr 2019 10:57:25 +0200 From: "Erich E. Hoover" From: Erich E. Hoover Signed-off-by: Vijay Kiran Kamuju --- dlls/kernel32/path.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dlls/kernel32/path.c b/dlls/kernel32/path.c index cf1c7689704..b8f49bd5975 100644 --- a/dlls/kernel32/path.c +++ b/dlls/kernel32/path.c @@ -1991,8 +1991,7 @@ BOOL WINAPI NeedCurrentDirectoryForExePathW( LPCWSTR name ) 'I','n','E','x','e','P','a','t','h',0}; WCHAR env_val; - /* MSDN mentions some 'registry location'. We do not use registry. */ - FIXME("(%s): partial stub\n", debugstr_w(name)); + TRACE("(%s)\n", debugstr_w(name)); if (strchrW(name, '\\')) return TRUE; -- 2.17.0