From 842949fa8099a9c627ffe9f62f36214898c33a12 Mon Sep 17 00:00:00 2001 From: jcarsey Date: Tue, 7 Oct 2014 19:58:43 +0000 Subject: ShellPkg: hexedit command does not return lasterror equal to 0 when exiting from editor Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by : Tapan Shah Reviewed-by: Jaben Carsey git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@16197 6f19259b-4bc3-4df7-8a09-765794883524 --- ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/HexEdit.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/HexEdit.c b/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/HexEdit.c index 8cbfd2c8f6..1d6e428445 100644 --- a/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/HexEdit.c +++ b/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/HexEdit.c @@ -1,6 +1,7 @@ /** @file Main entry point of editor + (C) Copyright 2014, Hewlett-Packard Development Company, L.P. Copyright (c) 2005 - 2011, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License @@ -241,7 +242,7 @@ ShellCommandRunHexEdit ( // HMainEditorCleanup (); - if (!EFI_ERROR (Status)) { + if (EFI_ERROR (Status)) { if (ShellStatus == SHELL_SUCCESS) { ShellStatus = SHELL_UNSUPPORTED; } -- cgit v1.2.3