Commit 9be94155 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

secur32: Implement LsaFreeReturnBuffer.

parent 5d740ddc
......@@ -113,9 +113,10 @@ NTSTATUS WINAPI LsaEnumerateLogonSessions(PULONG LogonSessionCount,
return STATUS_SUCCESS;
}
NTSTATUS WINAPI LsaFreeReturnBuffer(PVOID Buffer)
NTSTATUS WINAPI LsaFreeReturnBuffer(PVOID buffer)
{
FIXME("%p stub\n", Buffer);
TRACE("%p\n", buffer);
HeapFree(GetProcessHeap(), 0, buffer);
return STATUS_SUCCESS;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment