NetworkPkg: HttpDxe: Remove unused local variables

Fix gcc build errors [-Werror=unused-but-set-variable].

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Samer El-Haj-Mahmoud <samer.el-haj-mahmoud@hpe.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Build-tested-by: Laszlo Ersek <lersek@redhat.com>
[lersek@redhat.com: add more details to commit message]
Signed-off-by: Laszlo Ersek <lersek@redhat.com>

git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18573 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Samer El-Haj-Mahmoud 2015-10-06 19:49:13 +00:00 committed by lersek
parent 58a1e94052
commit c5a693cea6
2 changed files with 1 additions and 8 deletions

View File

@ -2,6 +2,7 @@
Implementation of EFI_HTTP_PROTOCOL protocol interfaces.
Copyright (c) 2015, Intel Corporation. All rights reserved.<BR>
(C) Copyright 2015 Hewlett Packard Enterprise Development LP<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
@ -227,7 +228,6 @@ EfiHttpRequest (
UINTN UrlLen;
CHAR16 *HostNameStr;
HTTP_TOKEN_WRAP *Wrap;
HTTP_TCP_TOKEN_WRAP *TcpWrap;
CHAR8 *FileUrl;
if ((This == NULL) || (Token == NULL)) {
@ -278,7 +278,6 @@ EfiHttpRequest (
HostName = NULL;
Wrap = NULL;
HostNameStr = NULL;
TcpWrap = NULL;
//
// Parse the URI of the remote host.

View File

@ -307,10 +307,8 @@ HttpCreateTcp4TxEvent (
)
{
EFI_STATUS Status;
HTTP_PROTOCOL *HttpInstance;
HTTP_TCP_TOKEN_WRAP *TcpWrap;
HttpInstance = Wrap->HttpInstance;
TcpWrap = &Wrap->TcpWrap;
Status = gBS->CreateEvent (
@ -383,10 +381,8 @@ HttpCreateTcp4RxEvent (
)
{
EFI_STATUS Status;
HTTP_PROTOCOL *HttpInstance;
HTTP_TCP_TOKEN_WRAP *TcpWrap;
HttpInstance = Wrap->HttpInstance;
TcpWrap = &Wrap->TcpWrap;
Status = gBS->CreateEvent (
@ -672,10 +668,8 @@ HttpConfigureTcp4 (
EFI_TCP4_CONFIG_DATA *Tcp4CfgData;
EFI_TCP4_ACCESS_POINT *Tcp4AP;
EFI_TCP4_OPTION *Tcp4Option;
HTTP_TCP_TOKEN_WRAP *TcpWrap;
ASSERT (HttpInstance != NULL);
TcpWrap = &Wrap->TcpWrap;
Tcp4CfgData = &HttpInstance->Tcp4CfgData;