mirror of https://github.com/acidanthera/audk.git
remove klocwork issue.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7346 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
bc7e600329
commit
60c65d37e2
|
@ -549,16 +549,15 @@ Error:
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
|
||||||
// Free private data
|
|
||||||
//
|
|
||||||
if (Private != NULL) {
|
|
||||||
if (Private->LineBuffer != NULL) {
|
if (Private->LineBuffer != NULL) {
|
||||||
FreePool (Private->LineBuffer);
|
FreePool (Private->LineBuffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// Free private data
|
||||||
|
//
|
||||||
FreePool (Private);
|
FreePool (Private);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
@ -642,14 +641,15 @@ GraphicsConsoleControllerDriverStop (
|
||||||
mFirstAccessFlag = TRUE;
|
mFirstAccessFlag = TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (Private->LineBuffer != NULL) {
|
||||||
|
FreePool (Private->LineBuffer);
|
||||||
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// Free our instance data
|
// Free our instance data
|
||||||
//
|
//
|
||||||
if (Private != NULL) {
|
|
||||||
FreePool (Private->LineBuffer);
|
|
||||||
FreePool (Private);
|
FreePool (Private);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue