mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Fix uninitialized variable warnings.
svn path=/trunk/; revision=14308
This commit is contained in:
parent
0341276444
commit
a106e5c2e0
1 changed files with 2 additions and 2 deletions
|
@ -76,8 +76,8 @@ SerialRead(
|
|||
DeviceExtension->SerialTimeOuts.ReadTotalTimeoutConstant == 0 &&
|
||||
DeviceExtension->SerialTimeOuts.ReadTotalTimeoutMultiplier == 0))
|
||||
{
|
||||
ULONG IntervalTimeout;
|
||||
ULONG TotalTimeout;
|
||||
ULONG IntervalTimeout = 0;
|
||||
ULONG TotalTimeout = 0;
|
||||
BOOLEAN UseIntervalTimeout = FALSE;
|
||||
BOOLEAN UseTotalTimeout = FALSE;
|
||||
ULONG ThisByteTimeout;
|
||||
|
|
Loading…
Reference in a new issue