summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Universal/SetupBrowserDxe/IfrParse.c
diff options
context:
space:
mode:
authorqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>2008-11-21 06:59:58 +0000
committerqwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524>2008-11-21 06:59:58 +0000
commitf4113e1fdb95c35145a86067c82267610625de74 (patch)
tree4efb6f59e9017229404781f2dcbc082178f21503 /MdeModulePkg/Universal/SetupBrowserDxe/IfrParse.c
parente38fc273849da854be2c9392b5e1bc3178f7f0bc (diff)
downloadedk2-platforms-f4113e1fdb95c35145a86067c82267610625de74.tar.xz
1) Remove the variable initalization in declaration.
2) Change all gBS->FreePool to use the MdePkg/BaseLib's FreePool. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6662 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal/SetupBrowserDxe/IfrParse.c')
-rw-r--r--MdeModulePkg/Universal/SetupBrowserDxe/IfrParse.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/MdeModulePkg/Universal/SetupBrowserDxe/IfrParse.c b/MdeModulePkg/Universal/SetupBrowserDxe/IfrParse.c
index fe029a3523..a01b4abe12 100644
--- a/MdeModulePkg/Universal/SetupBrowserDxe/IfrParse.c
+++ b/MdeModulePkg/Universal/SetupBrowserDxe/IfrParse.c
@@ -435,7 +435,7 @@ InitializeRequestElement (
NewStr = AllocateZeroPool (StringSize + CONFIG_REQUEST_STRING_INCREMENTAL * sizeof (CHAR16));
if (Storage->ConfigRequest != NULL) {
CopyMem (NewStr, Storage->ConfigRequest, StringSize);
- gBS->FreePool (Storage->ConfigRequest);
+ FreePool (Storage->ConfigRequest);
}
Storage->ConfigRequest = NewStr;
Storage->SpareStrLen = CONFIG_REQUEST_STRING_INCREMENTAL;
@@ -476,7 +476,7 @@ DestroyExpression (
//
// Free this Expression
//
- gBS->FreePool (Expression);
+ FreePool (Expression);
}
@@ -560,7 +560,7 @@ DestroyStatement (
Default = QUESTION_DEFAULT_FROM_LINK (Link);
RemoveEntryList (&Default->Link);
- gBS->FreePool (Default);
+ FreePool (Default);
}
//
@@ -571,7 +571,7 @@ DestroyStatement (
Option = QUESTION_OPTION_FROM_LINK (Link);
RemoveEntryList (&Option->Link);
- gBS->FreePool (Option);
+ FreePool (Option);
}
//
@@ -645,7 +645,7 @@ DestroyForm (
//
// Free this Form
//
- gBS->FreePool (Form);
+ FreePool (Form);
}
@@ -692,7 +692,7 @@ DestroyFormSet (
DefaultStore = FORMSET_DEFAULTSTORE_FROM_LINK (Link);
RemoveEntryList (&DefaultStore->Link);
- gBS->FreePool (DefaultStore);
+ FreePool (DefaultStore);
}
}