Add default way for switch in function 'RunCommandOrFile' of 'Shell.c'.

Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Shumin Qiu <shumin.qiu@intel.com>

git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15018 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
Laszlo Ersek 2013-12-24 07:25:31 +00:00 committed by shenshushi
parent bdebd2cecf
commit 6fa0da7d52
1 changed files with 10 additions and 0 deletions

View File

@ -2072,8 +2072,18 @@ RunCommandOrFile(
//
SetLastError(StatusCode);
break;
default:
//
// Do nothing.
//
break;
}
break;
default:
//
// Do nothing.
//
break;
}
SHELL_FREE_NON_NULL(CommandWithPath);