mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00: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:
parent
64944b49f7
commit
f0bec76acd
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue