mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
[NETAPI32]
NetGetJoinInformation: Fix netapi32 wksta winetest crash. svn path=/trunk/; revision=62288
This commit is contained in:
parent
27787c5918
commit
cefedcb695
1 changed files with 3 additions and 0 deletions
|
@ -570,6 +570,9 @@ NET_API_STATUS NET_API_FUNCTION NetGetJoinInformation(
|
|||
{
|
||||
FIXME("Stub %s %p %p\n", wine_dbgstr_w(Server), Name, type);
|
||||
|
||||
if (Name == NULL || type == NULL)
|
||||
return ERROR_INVALID_PARAMETER;
|
||||
|
||||
*Name = NULL;
|
||||
*type = NetSetupUnknownStatus;
|
||||
|
||||
|
|
Loading…
Reference in a new issue