From f0bec76acdbde43cc9427cf5ff8a04d390614b5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Fri, 18 Mar 2005 19:00:48 +0000 Subject: [PATCH] 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 --- reactos/drivers/dd/serial/pnp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/drivers/dd/serial/pnp.c b/reactos/drivers/dd/serial/pnp.c index 9e40c9c7171..6a0d3f13868 100644 --- a/reactos/drivers/dd/serial/pnp.c +++ b/reactos/drivers/dd/serial/pnp.c @@ -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;