summaryrefslogtreecommitdiffstats
path: root/Nt32Pkg
diff options
context:
space:
mode:
authorRuiyu Ni <ruiyu.ni@intel.com>2015-12-24 06:30:55 +0000
committerniruiyu <niruiyu@Edk2>2015-12-24 06:30:55 +0000
commit521465d218b14e812e8995644360cc7f09f71f8e (patch)
treefb1330176c4ad417967d60d7601e6e986df30c24 /Nt32Pkg
parent62ba2d57baa533bfe63f50e4217a79bb4992b2b6 (diff)
downloadedk2-521465d218b14e812e8995644360cc7f09f71f8e.tar.gz
edk2-521465d218b14e812e8995644360cc7f09f71f8e.tar.bz2
edk2-521465d218b14e812e8995644360cc7f09f71f8e.zip
Nt32Pkg/WinNtSimpleFileSystemDxe: Fix memory leak
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19513 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Nt32Pkg')
-rw-r--r--Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystem.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystem.c b/Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystem.c
index 1c300b6930..feef184edb 100644
--- a/Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystem.c
+++ b/Nt32Pkg/WinNtSimpleFileSystemDxe/WinNtSimpleFileSystem.c
@@ -1,6 +1,6 @@
/**@file
-Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2006 - 2015, 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
which accompanies this distribution. The full text of the license may be found at
@@ -628,6 +628,7 @@ Returns:
StrCat (TempFileName, L"\\*");
PrivateFile->LHandle = PrivateFile->WinNtThunk->FindFirstFile (TempFileName, &PrivateFile->FindBuf);
+ FreePool (TempFileName);
if (PrivateFile->LHandle == INVALID_HANDLE_VALUE) {
PrivateFile->IsValidFindBuf = FALSE;
@@ -1188,6 +1189,7 @@ Returns:
Status = EFI_NOT_FOUND;
}
+ FreePool (TempFileName);
goto Done;
}
@@ -1196,6 +1198,7 @@ Returns:
//
StrCat (TempFileName, L"\\*");
NewPrivateFile->LHandle = NewPrivateFile->WinNtThunk->FindFirstFile (TempFileName, &NewPrivateFile->FindBuf);
+ FreePool (TempFileName);
if (NewPrivateFile->LHandle == INVALID_HANDLE_VALUE) {
NewPrivateFile->IsValidFindBuf = FALSE;
@@ -1276,12 +1279,14 @@ Returns:
Status = WinNtSimpleFileSystemGetInfo (&NewPrivateFile->EfiFile, &gEfiFileInfoGuid, &InfoSize, Info);
if (EFI_ERROR (Status)) {
+ FreePool (Info);
goto Done;
}
Info->Attribute = Attributes;
WinNtSimpleFileSystemSetInfo (&NewPrivateFile->EfiFile, &gEfiFileInfoGuid, InfoSize, Info);
+ FreePool (Info);
}
Done:
@@ -1361,6 +1366,10 @@ Returns:
FreePool (PrivateFile->FileName);
}
+ if (PrivateFile->FilePath) {
+ FreePool (PrivateFile->FilePath);
+ }
+
FreePool (PrivateFile);
gBS->RestoreTPL (OldTpl);
@@ -1431,6 +1440,7 @@ Returns:
}
FreePool (PrivateFile->FileName);
+ FreePool (PrivateFile->FilePath);
FreePool (PrivateFile);
gBS->RestoreTPL (OldTpl);