mirror of
https://github.com/reactos/reactos.git
synced 2025-05-01 19:50:36 +00:00
[ADVAPI32] Ignore the return value of the HandlerFunctionEx as well
Ignore the return value of the HandlerFunctionEx because we already ignore the return value of the HandlerFunction. This fixes a winetest failure.
This commit is contained in:
parent
6d912629f7
commit
aba6ce5b84
1 changed files with 4 additions and 3 deletions
|
@ -536,9 +536,10 @@ ScControlService(PACTIVE_SERVICE lpService,
|
|||
else if (lpService->HandlerFunctionEx)
|
||||
{
|
||||
/* FIXME: Send correct 2nd and 3rd parameters */
|
||||
dwError = (lpService->HandlerFunctionEx)(ControlPacket->dwControl,
|
||||
0, NULL,
|
||||
lpService->HandlerContext);
|
||||
(lpService->HandlerFunctionEx)(ControlPacket->dwControl,
|
||||
0, NULL,
|
||||
lpService->HandlerContext);
|
||||
dwError = ERROR_SUCCESS;
|
||||
}
|
||||
|
||||
TRACE("ScControlService() done (Error %lu)\n", dwError);
|
||||
|
|
Loading…
Reference in a new issue