mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 04:13:33 +00:00
[NTOSKRNL]
- Add a hack so that registering an interface after a remove and reconnect works svn path=/branches/usb-bringup-trunk/; revision=55193
This commit is contained in:
@@ -1145,7 +1145,12 @@ IoRegisterDeviceInterface(IN PDEVICE_OBJECT PhysicalDeviceObject,
|
||||
|
||||
/* If the symbolic link already exists, return an informational success status */
|
||||
if (SymLinkStatus == STATUS_OBJECT_NAME_COLLISION)
|
||||
{
|
||||
/* HACK: Delete the existing symbolic link and update it to the new PDO name */
|
||||
IoDeleteSymbolicLink(SymbolicLinkName);
|
||||
IoCreateSymbolicLink(SymbolicLinkName, &PdoNameInfo->Name);
|
||||
SymLinkStatus = STATUS_OBJECT_NAME_EXISTS;
|
||||
}
|
||||
|
||||
if (!NT_SUCCESS(SymLinkStatus))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user