[NETAPI32]

NetGetJoinInformation: Fix netapi32 wksta winetest crash.

svn path=/trunk/; revision=62288
This commit is contained in:
Eric Kohl 2014-02-22 13:55:29 +00:00
parent 27787c5918
commit cefedcb695

View file

@ -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;