mirror of
https://github.com/FreeRDP/FreeRDP.git
synced 2024-11-30 21:33:34 +08:00
Fixed SetLastError test.
WLog initialisation checks environment variables, which may not exist and therefore set an error. So initialise it before doing tests.
This commit is contained in:
parent
5046b1d035
commit
052b4b4365
@ -60,6 +60,11 @@ int TestErrorSetLastError(int argc, char* argv[])
|
||||
DWORD error;
|
||||
HANDLE threads[4];
|
||||
|
||||
/* We must initialize WLog here. It will check for settings
|
||||
* in the environment and if the variables are not set, the last
|
||||
* error state is changed... */
|
||||
WLog_GetRoot();
|
||||
|
||||
SetLastError(ERROR_ACCESS_DENIED);
|
||||
|
||||
error = GetLastError();
|
||||
|
Loading…
Reference in New Issue
Block a user