ncrypt: Map STATUS_NO_MEMORY to NTE_NO_MEMORY.

Signed-off-by: Mohamad Al-Jaf <mohamadaljaf@gmail.com>
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Mohamad Al-Jaf 2022-04-07 22:50:18 -04:00 committed by Alexandre Julliard
parent 27c6ac5689
commit dc702f79aa
1 changed files with 1 additions and 0 deletions

View File

@ -40,6 +40,7 @@ static SECURITY_STATUS map_ntstatus(NTSTATUS status)
case STATUS_INVALID_SIGNATURE: return NTE_BAD_SIGNATURE;
case STATUS_SUCCESS: return ERROR_SUCCESS;
case STATUS_INVALID_PARAMETER: return NTE_INVALID_PARAMETER;
case STATUS_NO_MEMORY: return NTE_NO_MEMORY;
case STATUS_NOT_SUPPORTED: return NTE_NOT_SUPPORTED;
case NTE_BAD_DATA: return NTE_BAD_DATA;
default: