mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 05:20:54 +00:00
fixing the build for gcc 3.4.5
svn path=/trunk/; revision=26244
This commit is contained in:
parent
cfb33d951a
commit
550b42f6d2
1 changed files with 4 additions and 4 deletions
|
@ -766,9 +766,9 @@ NTSTATUS TdiSend
|
|||
PIO_COMPLETION_ROUTINE CompletionRoutine,
|
||||
PVOID CompletionContext )
|
||||
{
|
||||
PDEVICE_OBJECT DeviceObject;
|
||||
PDEVICE_OBJECT DeviceObject = NULL;
|
||||
NTSTATUS Status = STATUS_SUCCESS;
|
||||
PMDL Mdl;
|
||||
PMDL Mdl = NULL;
|
||||
|
||||
DeviceObject = IoGetRelatedDeviceObject(TransportObject);
|
||||
if (!DeviceObject) {
|
||||
|
@ -843,8 +843,8 @@ NTSTATUS TdiReceive(
|
|||
PVOID CompletionContext)
|
||||
{
|
||||
NTSTATUS Status = STATUS_SUCCESS;
|
||||
PDEVICE_OBJECT DeviceObject;
|
||||
PMDL Mdl;
|
||||
PDEVICE_OBJECT DeviceObject = NULL;
|
||||
PMDL Mdl = NULL;
|
||||
|
||||
DeviceObject = IoGetRelatedDeviceObject(TransportObject);
|
||||
if (!DeviceObject) {
|
||||
|
|
Loading…
Reference in a new issue