mirror of
https://github.com/reactos/reactos.git
synced 2025-01-12 09:07:54 +00:00
add a parameter check to GetAdaptersAddresses stub (fixes a winetest)
svn path=/trunk/; revision=41020
This commit is contained in:
parent
3e68821bfc
commit
38600af091
1 changed files with 2 additions and 0 deletions
|
@ -2178,6 +2178,8 @@ PIP_ADAPTER_ORDER_MAP WINAPI GetAdapterOrderMap(VOID)
|
|||
*/
|
||||
DWORD WINAPI GetAdaptersAddresses(ULONG Family,ULONG Flags,PVOID Reserved,PIP_ADAPTER_ADDRESSES pAdapterAddresses,PULONG pOutBufLen)
|
||||
{
|
||||
if (!pOutBufLen) return ERROR_INVALID_PARAMETER;
|
||||
|
||||
FIXME(":stub\n");
|
||||
return 0L;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue