Alexandre Julliard : sechost: Use fully interpreted IDL stubs.
Module: wine Branch: master Commit: 2c05f9d08537fa9c56bb58a48b2b66f4f67b5fb9 URL: https://gitlab.winehq.org/wine/wine/-/commit/2c05f9d08537fa9c56bb58a48b2b66f... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Thu Apr 25 14:17:43 2024 +0200 sechost: Use fully interpreted IDL stubs. --- dlls/sechost/Makefile.in | 2 ++ dlls/sechost/service.c | 3 +-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/dlls/sechost/Makefile.in b/dlls/sechost/Makefile.in index ec1eb100683..eeb20370e71 100644 --- a/dlls/sechost/Makefile.in +++ b/dlls/sechost/Makefile.in @@ -3,6 +3,8 @@ IMPORTLIB = sechost IMPORTS = kernelbase DELAYIMPORTS = rpcrt4 +EXTRAIDLFLAGS = -Oicf + SOURCES = \ plugplay.idl \ security.c \ diff --git a/dlls/sechost/service.c b/dlls/sechost/service.c index 240e048a4a5..446031e4043 100644 --- a/dlls/sechost/service.c +++ b/dlls/sechost/service.c @@ -284,9 +284,8 @@ SC_HANDLE WINAPI DECLSPEC_HOTPATCH OpenSCManagerW( const WCHAR *machine, const W } __ENDTRY - if (!err) return handle; SetLastError( err ); - return NULL; + return handle; } /******************************************************************************
participants (1)
-
Alexandre Julliard