Fixed duplicate call to NtCurrentTeb

(cherry picked from commit ca1fe0193e2728635b415478dc366939817cfb6c)
This commit is contained in:
Armin Novak 2020-01-22 15:17:03 +01:00 коммит произвёл akallabeth
Родитель 6cdb0193da
Коммит bd3c2d9517
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -44,7 +44,7 @@ DWORD GetLastError(VOID)
PTEB pt = NtCurrentTeb();
if (pt)
{
return NtCurrentTeb()->LastErrorValue;
return pt->LastErrorValue;
}
return ERROR_OUTOFMEMORY;
}