1 Aug
2019
1 Aug
'19
12:17 p.m.
On 01/08/2019 13:17, Dmitry Timoshkov wrote:
Serge Gautherie<winehq-git_serge_180711(a)gautherie.fr> wrote:
@@ -4030,6 +4030,12 @@ BOOL WINAPI QueryFullProcessImageNameW(HANDLE hProcess, DWORD dwFlags, LPWSTR lp NTSTATUS status; DWORD needed;
+ if (dwFlags >= 2) + { + SetLastError(ERROR_INVALID_PARAMETER); + return FALSE; + }
What does that mean?
I am not sure what you are asking for. To succeed tests!?
Is there an application that depends on this?
I don't know indeed.
If you don't know, then it's better to not add anything like this.
Is Wine not interested in validating parameters (values), then? --