mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 08:43:04 +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)
|
IN PDEVICE_OBJECT Pdo)
|
||||||
{
|
{
|
||||||
PDEVICE_OBJECT Fdo = NULL;
|
PDEVICE_OBJECT Fdo = NULL;
|
||||||
PSERIAL_DEVICE_EXTENSION DeviceExtension;
|
PSERIAL_DEVICE_EXTENSION DeviceExtension = NULL;
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
WCHAR DeviceNameBuffer[32];
|
WCHAR DeviceNameBuffer[32];
|
||||||
UNICODE_STRING DeviceName;
|
UNICODE_STRING DeviceName;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue