diff options
author | Elvin Li <elvin.li@intel.com> | 2014-03-18 07:43:27 +0000 |
---|---|---|
committer | li-elvin <li-elvin@6f19259b-4bc3-4df7-8a09-765794883524> | 2014-03-18 07:43:27 +0000 |
commit | 4529d723108b6aa365927f85143d4897b4563477 (patch) | |
tree | 2b1f204dfc72fb733d3bbe0010cdf20e6914ad93 /MdeModulePkg/Universal | |
parent | 304ae970ee25eed4c7ab4f153ceba8b37e1ee661 (diff) | |
download | edk2-4529d723108b6aa365927f85143d4897b4563477.zip edk2-4529d723108b6aa365927f85143d4897b4563477.tar.gz edk2-4529d723108b6aa365927f85143d4897b4563477.tar.bz2 |
Remove ASSERT when SetVariable for ConOutDev/ConInDev/ErrOutDev variables failed.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Elvin Li <elvin.li@intel.com>
Reviewed-by: Jiewen Yao <jiewen.yao@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15336 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Universal')
-rw-r--r-- | MdeModulePkg/Universal/Console/TerminalDxe/Terminal.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/MdeModulePkg/Universal/Console/TerminalDxe/Terminal.c b/MdeModulePkg/Universal/Console/TerminalDxe/Terminal.c index 14f49ee..a270908 100644 --- a/MdeModulePkg/Universal/Console/TerminalDxe/Terminal.c +++ b/MdeModulePkg/Universal/Console/TerminalDxe/Terminal.c @@ -2,7 +2,7 @@ Produces Simple Text Input Protocol, Simple Text Input Extended Protocol and
Simple Text Output Protocol upon Serial IO Protocol.
-Copyright (c) 2006 - 2012, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2006 - 2014, 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
@@ -1462,7 +1462,6 @@ TerminalUpdateConsoleDevVariable ( VariableSize,
Variable
);
- ASSERT_EFI_ERROR (Status);
FreePool (Variable);
return ;
@@ -1570,7 +1569,6 @@ TerminalRemoveConsoleDevVariable ( VariableSize,
NewVariable
);
- ASSERT_EFI_ERROR (Status);
}
if (NewVariable != NULL) {
|