From: Hermès Bélusca-Maïto Date: Wed, 3 Feb 2016 00:37:23 +0000 (+0000) Subject: [FREELDR][STREAM][NTOS] X-Git-Tag: ReactOS-0.4.1~534 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=9cc0aedad7942f122c1f39c121124f8a81e3134c [FREELDR][STREAM][NTOS] Replace old bugzilla report IDs to their JIRA counterparts. [LIBUSB] The third parameter of IoRegisterDeviceInterface is a pointer (optional). Use NULL instead of 0. svn path=/trunk/; revision=70680 --- diff --git a/reactos/boot/freeldr/freeldr/windows/wlregistry.c b/reactos/boot/freeldr/freeldr/windows/wlregistry.c index afde24f11b1..3cf4e6ea2e4 100644 --- a/reactos/boot/freeldr/freeldr/windows/wlregistry.c +++ b/reactos/boot/freeldr/freeldr/windows/wlregistry.c @@ -223,7 +223,7 @@ WinLdrGetNLSNames(LPSTR AnsiName, { //strcpy(szErrorOut, "ACP NLS Setting exists, but isn't readable"); //return FALSE; - wcscpy(NameBuffer, L"c_1252.nls"); // HACK: ReactOS bug #6727 + wcscpy(NameBuffer, L"c_1252.nls"); // HACK: ReactOS bug CORE-6105 } sprintf(AnsiName, "%S", NameBuffer); @@ -242,7 +242,7 @@ WinLdrGetNLSNames(LPSTR AnsiName, { //strcpy(szErrorOut, "OEMCP NLS setting exists, but isn't readable"); //return FALSE; - wcscpy(NameBuffer, L"c_437.nls"); // HACK: ReactOS bug #6727 + wcscpy(NameBuffer, L"c_437.nls"); // HACK: ReactOS bug CORE-6105 } sprintf(OemName, "%S", NameBuffer); diff --git a/reactos/drivers/wdm/audio/legacy/stream/filter.c b/reactos/drivers/wdm/audio/legacy/stream/filter.c index 6f5fc08e5d4..25f4141fcc2 100644 --- a/reactos/drivers/wdm/audio/legacy/stream/filter.c +++ b/reactos/drivers/wdm/audio/legacy/stream/filter.c @@ -130,7 +130,7 @@ RegisterDeviceInterfaces( /* Register device interface */ Status = IoRegisterDeviceInterface(DeviceExtension->PhysicalDeviceObject, StreamInformation->Category, - NULL, /* see bug 4566 */ + NULL, /* see CORE-4218 and r42457 */ &SymbolicLink); if (NT_SUCCESS(Status)) diff --git a/reactos/lib/drivers/libusb/hub_controller.cpp b/reactos/lib/drivers/libusb/hub_controller.cpp index 2b9e51d6382..d3a90a3ef5d 100644 --- a/reactos/lib/drivers/libusb/hub_controller.cpp +++ b/reactos/lib/drivers/libusb/hub_controller.cpp @@ -3828,7 +3828,7 @@ CHubController::SetDeviceInterface( // // register device interface // - Status = IoRegisterDeviceInterface(m_HubControllerDeviceObject, &GUID_DEVINTERFACE_USB_HUB, 0, &m_HubDeviceInterfaceString); + Status = IoRegisterDeviceInterface(m_HubControllerDeviceObject, &GUID_DEVINTERFACE_USB_HUB, NULL, &m_HubDeviceInterfaceString); if (NT_SUCCESS(Status)) { diff --git a/reactos/ntoskrnl/ke/wait.c b/reactos/ntoskrnl/ke/wait.c index a11e6ed7d3f..ed81484ab3e 100644 --- a/reactos/ntoskrnl/ke/wait.c +++ b/reactos/ntoskrnl/ke/wait.c @@ -608,7 +608,7 @@ KeWaitForMultipleObjects(IN ULONG Count, else if (KeGetCurrentIrql() == DISPATCH_LEVEL && (!Timeout || Timeout->QuadPart != 0)) { - /* HACK: tcpip is broken and waits with spinlocks acquired (bug #7129) */ + /* HACK: tcpip is broken and waits with spinlocks acquired (CORE-6473) */ DPRINT("%s called at DISPATCH_LEVEL with non-zero timeout!\n", __FUNCTION__); }