mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 21:43:13 +00:00
[UMPNPMGR]
- It is not an error when the client is already connected - Fixes random driver installation failures svn path=/trunk/; revision=59142
This commit is contained in:
parent
c51e3b4745
commit
e7ffaab876
1 changed files with 5 additions and 2 deletions
|
@ -2886,8 +2886,11 @@ InstallDevice(PCWSTR DeviceInstance, BOOL ShowWizard)
|
||||||
/* Wait for the function to connect to our pipe */
|
/* Wait for the function to connect to our pipe */
|
||||||
if(!ConnectNamedPipe(hPipe, NULL))
|
if(!ConnectNamedPipe(hPipe, NULL))
|
||||||
{
|
{
|
||||||
DPRINT1("ConnectNamedPipe failed with error %u\n", GetLastError());
|
if (GetLastError() != ERROR_PIPE_CONNECTED)
|
||||||
goto cleanup;
|
{
|
||||||
|
DPRINT1("ConnectNamedPipe failed with error %u\n", GetLastError());
|
||||||
|
goto cleanup;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Pass the data. The following output is partly compatible to Windows XP SP2 (researched using a modified newdev.dll to log this stuff) */
|
/* Pass the data. The following output is partly compatible to Windows XP SP2 (researched using a modified newdev.dll to log this stuff) */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue