mirror of
https://github.com/reactos/reactos.git
synced 2025-05-10 20:27:45 +00:00
- Initialize remote address to 0 if the caller didn't specify one
svn path=/trunk/; revision=41858
This commit is contained in:
parent
85f298694e
commit
08df2017e3
1 changed files with 2 additions and 1 deletions
|
@ -266,7 +266,8 @@ NTSTATUS DGReceiveDatagram(
|
|||
}
|
||||
else
|
||||
{
|
||||
ReceiveRequest->RemotePort = 0;
|
||||
ReceiveRequest->RemotePort = 0;
|
||||
AddrInitIPv4(&ReceiveRequest->RemoteAddress, 0);
|
||||
}
|
||||
|
||||
IoMarkIrpPending(Irp);
|
||||
|
|
Loading…
Reference in a new issue