Author: pschweitzer Date: Sat Oct 24 09:50:50 2015 New Revision: 69668
URL: http://svn.reactos.org/svn/reactos?rev=69668&view=rev Log: [SETUPAPI] Properly return the machine handle in CM_Connect_MachineW()
CID 716459
Modified: trunk/reactos/dll/win32/setupapi/cfgmgr.c
Modified: trunk/reactos/dll/win32/setupapi/cfgmgr.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/setupapi/cfgmgr.c... ============================================================================== --- trunk/reactos/dll/win32/setupapi/cfgmgr.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/setupapi/cfgmgr.c [iso-8859-1] Sat Oct 24 09:50:50 2015 @@ -555,7 +555,7 @@ } }
- phMachine = (PHMACHINE)pMachine; + *phMachine = (PHMACHINE)pMachine;
return CR_SUCCESS; }