NetworkPkg: Remove superfluous return statement.

If the code eventually returns "Status" anyway, it does not make
sense to explicitely return "Status" in case of an error, too.

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Wu Jiaxin <jiaxin.wu@intel.com>
This commit is contained in:
Thomas Huth 2017-01-19 17:37:31 +08:00 committed by Jiaxin Wu
parent 4b2fb7986d
commit f3fa35a002
1 changed files with 0 additions and 4 deletions

View File

@ -1294,10 +1294,6 @@ TlsCloseSession (
FreePool (BufferOut);
NetbufFree (PacketOut);
if (EFI_ERROR (Status)) {
return Status;
}
return Status;
}