Commit 269dbdcf authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

advapi32: Initialize svcctl_GetNotifyResults output parameter to NULL.

Otherwise rpcrt4 treats its uninitialized value as output buffer. Signed-off-by: 's avatarJacek Caban <jacek@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent add31e1d
......@@ -2637,7 +2637,7 @@ static DWORD WINAPI notify_thread(void *user)
{
DWORD err;
notify_data *data = user;
SC_RPC_NOTIFY_PARAMS_LIST *list;
SC_RPC_NOTIFY_PARAMS_LIST *list = NULL;
SERVICE_NOTIFY_STATUS_CHANGE_PARAMS_2 *cparams;
BOOL dummy;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment