Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 1309 of file rpc_server.c.
Referenced by DllMain().
{ struct rpc_server_registered_auth_info *auth_info, *cursor2; EnterCriticalSection(&server_auth_info_cs); LIST_FOR_EACH_ENTRY_SAFE(auth_info, cursor2, &server_registered_auth_info, struct rpc_server_registered_auth_info, entry) { FreeCredentialsHandle(&auth_info->cred); HeapFree(GetProcessHeap(), 0, auth_info); } LeaveCriticalSection(&server_auth_info_cs); }