Author: hbelusca
Date: Wed Feb 3 00:37:23 2016
New Revision: 70680
URL:
http://svn.reactos.org/svn/reactos?rev=70680&view=rev
Log:
[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.
Modified:
trunk/reactos/boot/freeldr/freeldr/windows/wlregistry.c
trunk/reactos/drivers/wdm/audio/legacy/stream/filter.c
trunk/reactos/lib/drivers/libusb/hub_controller.cpp
trunk/reactos/ntoskrnl/ke/wait.c
Modified: trunk/reactos/boot/freeldr/freeldr/windows/wlregistry.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/windo…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/windows/wlregistry.c [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/windows/wlregistry.c [iso-8859-1] Wed Feb 3
00:37:23 2016
@@ -223,7 +223,7 @@
{
//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 @@
{
//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);
Modified: trunk/reactos/drivers/wdm/audio/legacy/stream/filter.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/wdm/audio/legacy/s…
==============================================================================
--- trunk/reactos/drivers/wdm/audio/legacy/stream/filter.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/wdm/audio/legacy/stream/filter.c [iso-8859-1] Wed Feb 3
00:37:23 2016
@@ -130,7 +130,7 @@
/* Register device interface */
Status = IoRegisterDeviceInterface(DeviceExtension->PhysicalDeviceObject,
StreamInformation->Category,
- NULL, /* see bug 4566 */
+ NULL, /* see CORE-4218 and r42457 */
&SymbolicLink);
if (NT_SUCCESS(Status))
Modified: trunk/reactos/lib/drivers/libusb/hub_controller.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/drivers/libusb/hub_con…
==============================================================================
--- trunk/reactos/lib/drivers/libusb/hub_controller.cpp [iso-8859-1] (original)
+++ trunk/reactos/lib/drivers/libusb/hub_controller.cpp [iso-8859-1] Wed Feb 3 00:37:23
2016
@@ -3828,7 +3828,7 @@
//
// 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))
{
Modified: trunk/reactos/ntoskrnl/ke/wait.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/wait.c?rev=706…
==============================================================================
--- trunk/reactos/ntoskrnl/ke/wait.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ke/wait.c [iso-8859-1] Wed Feb 3 00:37:23 2016
@@ -608,7 +608,7 @@
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__);
}