mirror of
https://github.com/reactos/reactos.git
synced 2026-06-01 00:40:26 +08: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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user