advapi32: Initialize svcctl_GetNotifyResults output parameter to NULL.
Otherwise rpcrt4 treats its uninitialized value as output buffer. Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
add31e1d7a
commit
269dbdcfbf
|
@ -2637,7 +2637,7 @@ static DWORD WINAPI notify_thread(void *user)
|
||||||
{
|
{
|
||||||
DWORD err;
|
DWORD err;
|
||||||
notify_data *data = user;
|
notify_data *data = user;
|
||||||
SC_RPC_NOTIFY_PARAMS_LIST *list;
|
SC_RPC_NOTIFY_PARAMS_LIST *list = NULL;
|
||||||
SERVICE_NOTIFY_STATUS_CHANGE_PARAMS_2 *cparams;
|
SERVICE_NOTIFY_STATUS_CHANGE_PARAMS_2 *cparams;
|
||||||
BOOL dummy;
|
BOOL dummy;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue