mirror of https://github.com/acidanthera/audk.git
Eliminate the variable.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Eric Dong <eric.dong@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16519 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
d5daaa836f
commit
84b8497338
|
@ -466,7 +466,6 @@ IsDevicePathExist (
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
UINTN Length;
|
UINTN Length;
|
||||||
EFI_STRING PathHdr;
|
|
||||||
|
|
||||||
for (; (*String != 0 && StrnCmp (String, L"PATH=", StrLen (L"PATH=")) != 0); String++);
|
for (; (*String != 0 && StrnCmp (String, L"PATH=", StrLen (L"PATH=")) != 0); String++);
|
||||||
if (*String == 0) {
|
if (*String == 0) {
|
||||||
|
@ -477,7 +476,6 @@ IsDevicePathExist (
|
||||||
if (*String == 0) {
|
if (*String == 0) {
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
PathHdr = String;
|
|
||||||
|
|
||||||
for (Length = 0; *String != 0 && *String != L'&'; String++, Length++);
|
for (Length = 0; *String != 0 && *String != L'&'; String++, Length++);
|
||||||
if (((Length + 1) / 2) < sizeof (EFI_DEVICE_PATH_PROTOCOL)) {
|
if (((Length + 1) / 2) < sizeof (EFI_DEVICE_PATH_PROTOCOL)) {
|
||||||
|
|
Loading…
Reference in New Issue