Module: wine Branch: master Commit: 2295d937a8ae917deb739999ff4f81d474f7f122 URL: https://source.winehq.org/git/wine.git/?a=commit;h=2295d937a8ae917deb739999f...
Author: Erich E. Hoover erich.e.hoover@gmail.com Date: Wed Apr 17 10:57:25 2019 +0200
kernel32: NeedCurrentDirectoryForExePath does not use the registry.
Signed-off-by: Erich E. Hoover erich.e.hoover@gmail.com Signed-off-by: Vijay Kiran Kamuju infyquest@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
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 cf1c768..b8f49bd 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;