diff options
author | Olivier Martin <olivier.martin@arm.com> | 2014-04-02 17:33:44 +0000 |
---|---|---|
committer | oliviermartin <oliviermartin@6f19259b-4bc3-4df7-8a09-765794883524> | 2014-04-02 17:33:44 +0000 |
commit | 79480c8d7c3f3e6f10ed7853ce8bace30503899f (patch) | |
tree | 09352232ba5e867170b6e54b883992f5f3168f3e /ArmPlatformPkg | |
parent | d8dc9f0af56c68492d8a1be52efc1a711d3497f4 (diff) | |
download | edk2-79480c8d7c3f3e6f10ed7853ce8bace30503899f.zip edk2-79480c8d7c3f3e6f10ed7853ce8bace30503899f.tar.gz edk2-79480c8d7c3f3e6f10ed7853ce8bace30503899f.tar.bz2 |
ArmPlatformPkg: Fixed memory leak after calling GetEnvironmentVariable()
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Olivier Martin <olivier.martin@arm.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15428 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ArmPlatformPkg')
-rw-r--r-- | ArmPlatformPkg/Bds/BootOption.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ArmPlatformPkg/Bds/BootOption.c b/ArmPlatformPkg/Bds/BootOption.c index ee0301e..8993cb1 100644 --- a/ArmPlatformPkg/Bds/BootOption.c +++ b/ArmPlatformPkg/Bds/BootOption.c @@ -86,6 +86,7 @@ BootOptionStart ( (CHAR8*)(LinuxArguments + 1),
FdtDevicePath);
+ FreePool (DefaultFdtDevicePath);
FreePool (FdtDevicePath);
}
} else {
|