mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[TCPIP]
* Fix a read-after-free. CID 716802. svn path=/trunk/; revision=57143
This commit is contained in:
parent
eb61421992
commit
4f7e723359
1 changed files with 1 additions and 1 deletions
|
@ -342,8 +342,8 @@ NTSTATUS FileOpenAddress(
|
|||
|
||||
if (!AddrIsUnspecified(&AddrFile->Address) &&
|
||||
!AddrLocateInterface(&AddrFile->Address)) {
|
||||
ExFreePoolWithTag(AddrFile, ADDR_FILE_TAG);
|
||||
TI_DbgPrint(MIN_TRACE, ("Non-local address given (0x%X).\n", A2S(&AddrFile->Address)));
|
||||
ExFreePoolWithTag(AddrFile, ADDR_FILE_TAG);
|
||||
return STATUS_INVALID_ADDRESS;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue