Fixed duplicate call to NtCurrentTeb
(cherry picked from commit ca1fe0193e2728635b415478dc366939817cfb6c)
This commit is contained in:
Родитель
6cdb0193da
Коммит
bd3c2d9517
|
@ -44,7 +44,7 @@ DWORD GetLastError(VOID)
|
|||
PTEB pt = NtCurrentTeb();
|
||||
if (pt)
|
||||
{
|
||||
return NtCurrentTeb()->LastErrorValue;
|
||||
return pt->LastErrorValue;
|
||||
}
|
||||
return ERROR_OUTOFMEMORY;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче