mirror of
https://github.com/reactos/reactos.git
synced 2026-07-04 11:14:23 +08:00
Fix a warning with some compilers about non-initialized variable.
This can't really happen in real execution, but let's be the compiler happy ;) svn path=/trunk/; revision=14180
This commit is contained in:
@@ -19,7 +19,7 @@ SerialAddDevice(
|
||||
IN PDEVICE_OBJECT Pdo)
|
||||
{
|
||||
PDEVICE_OBJECT Fdo = NULL;
|
||||
PSERIAL_DEVICE_EXTENSION DeviceExtension;
|
||||
PSERIAL_DEVICE_EXTENSION DeviceExtension = NULL;
|
||||
NTSTATUS Status;
|
||||
WCHAR DeviceNameBuffer[32];
|
||||
UNICODE_STRING DeviceName;
|
||||
|
||||
Reference in New Issue
Block a user