diff options
author | Jiaxin Wu <jiaxin.wu@intel.com> | 2017-10-19 13:56:25 +0800 |
---|---|---|
committer | Jiaxin Wu <jiaxin.wu@intel.com> | 2017-10-26 16:21:57 +0800 |
commit | 4c19e1d2e1bd5915a75620b2ec85c02d3579b50f (patch) | |
tree | ac41384d53a0358f594aa052ef3e586b8a122570 /NetworkPkg | |
parent | 6b08dd6eb81d729e3df8329bee7b2a04a5bd4d7a (diff) | |
download | edk2-4c19e1d2e1bd5915a75620b2ec85c02d3579b50f.tar.gz edk2-4c19e1d2e1bd5915a75620b2ec85c02d3579b50f.tar.bz2 edk2-4c19e1d2e1bd5915a75620b2ec85c02d3579b50f.zip |
NetworkPkg/TlsAuthConfigDxe: Remove the extra FreePool
Cc: Long Qin <qin.long@intel.com>
Cc: Ye Ting <ting.ye@intel.com>
Cc: Fu Siyuan <siyuan.fu@intel.com>
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: Long Qin <qin.long@intel.com>
Reviewed-by: Fu Siyuan <siyuan.fu@intel.com>
Diffstat (limited to 'NetworkPkg')
-rw-r--r-- | NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigDxe.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigDxe.c b/NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigDxe.c index 351656ff0c..403afbb815 100644 --- a/NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigDxe.c +++ b/NetworkPkg/TlsAuthConfigDxe/TlsAuthConfigDxe.c @@ -1,7 +1,7 @@ /** @file
The DriverEntryPoint for TlsAuthConfigDxe driver.
- Copyright (c) 2016, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2016 - 2017, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
@@ -128,8 +128,7 @@ TlsAuthConfigDxeDriverEntryPoint ( ON_ERROR:
TlsAuthConfigFormUnload (PrivateData);
- FreePool (PrivateData);
-
+
return Status;
}
|