mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-06-03 00:29:55 -04:00
Merge recent updates but without broken builder and with minor refactoring and bugfixes
This commit is contained in:
parent
b064495db8
commit
0a634ebcbd
37 changed files with 712 additions and 8665 deletions
|
@ -536,39 +536,14 @@ Returns: (VOID)
|
|||
|
||||
--*/
|
||||
{
|
||||
if (mText) {
|
||||
free (mText);
|
||||
}
|
||||
|
||||
if (mLevel) {
|
||||
free (mLevel);
|
||||
}
|
||||
|
||||
if (mChildCount) {
|
||||
free (mChildCount);
|
||||
}
|
||||
|
||||
if (mPosition) {
|
||||
free (mPosition);
|
||||
}
|
||||
|
||||
if (mParent) {
|
||||
free (mParent);
|
||||
}
|
||||
|
||||
if (mPrev) {
|
||||
free (mPrev);
|
||||
}
|
||||
|
||||
if (mNext) {
|
||||
free (mNext);
|
||||
}
|
||||
|
||||
if (mBuf) {
|
||||
free (mBuf);
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -580,39 +580,14 @@ VOID
|
|||
|
||||
--*/
|
||||
{
|
||||
if (mText != NULL) {
|
||||
free (mText);
|
||||
}
|
||||
|
||||
if (mLevel != NULL) {
|
||||
free (mLevel);
|
||||
}
|
||||
|
||||
if (mChildCount != NULL) {
|
||||
free (mChildCount);
|
||||
}
|
||||
|
||||
if (mPosition != NULL) {
|
||||
free (mPosition);
|
||||
}
|
||||
|
||||
if (mParent != NULL) {
|
||||
free (mParent);
|
||||
}
|
||||
|
||||
if (mPrev != NULL) {
|
||||
free (mPrev);
|
||||
}
|
||||
|
||||
if (mNext != NULL) {
|
||||
free (mNext);
|
||||
}
|
||||
|
||||
if (mBuf != NULL) {
|
||||
free (mBuf);
|
||||
}
|
||||
|
||||
return ;
|
||||
}
|
||||
|
||||
STATIC
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue