mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-28 16:14:04 +02:00
Initialize data and correct faulty logic in TcpComponentNameGetControllerName().
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Wu Jiaxin <jiaxin.wu@intel.com> Reviewed-by: Ye Ting <ting.ye@intel.com> Reviewed-by: Fu Siyuan <siyuan.fu@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16743 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
ec3058392f
commit
35a26499af
@ -1,7 +1,7 @@
|
|||||||
/** @file
|
/** @file
|
||||||
UEFI Component Name(2) protocol implementation for Tcp4Dxe driver.
|
UEFI Component Name(2) protocol implementation for Tcp4Dxe driver.
|
||||||
|
|
||||||
Copyright (c) 2005 - 2013, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2005 - 2015, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
@ -256,6 +256,7 @@ UpdateName (
|
|||||||
// Format the child name into the string buffer as:
|
// Format the child name into the string buffer as:
|
||||||
// TCPv4 (SrcPort=59, DestPort=60, ActiveFlag=TRUE)
|
// TCPv4 (SrcPort=59, DestPort=60, ActiveFlag=TRUE)
|
||||||
//
|
//
|
||||||
|
ZeroMem (&Tcp4ConfigData, sizeof (Tcp4ConfigData));
|
||||||
Status = Tcp4->GetModeData (Tcp4, NULL, &Tcp4ConfigData, NULL, NULL, NULL);
|
Status = Tcp4->GetModeData (Tcp4, NULL, &Tcp4ConfigData, NULL, NULL, NULL);
|
||||||
if (!EFI_ERROR (Status)) {
|
if (!EFI_ERROR (Status)) {
|
||||||
UnicodeSPrint (HandleName, sizeof (HandleName),
|
UnicodeSPrint (HandleName, sizeof (HandleName),
|
||||||
@ -264,7 +265,7 @@ UpdateName (
|
|||||||
Tcp4ConfigData.AccessPoint.RemotePort,
|
Tcp4ConfigData.AccessPoint.RemotePort,
|
||||||
(Tcp4ConfigData.AccessPoint.ActiveFlag ? L"TRUE" : L"FALSE")
|
(Tcp4ConfigData.AccessPoint.ActiveFlag ? L"TRUE" : L"FALSE")
|
||||||
);
|
);
|
||||||
} if (Status == EFI_NOT_STARTED) {
|
} else if (Status == EFI_NOT_STARTED) {
|
||||||
UnicodeSPrint (
|
UnicodeSPrint (
|
||||||
HandleName,
|
HandleName,
|
||||||
sizeof (HandleName),
|
sizeof (HandleName),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user