X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=ShellPkg%2FApplication%2FShell%2FShell.c;h=29c65b7f27eda34c5e0c558a27dab7004c3e28f7;hp=627fab0ad03550e5e990c037994a783f42d0f679;hb=4b6b543e77f3237c63e691f35d0bb259ddc287b4;hpb=75eb337f6040933b0fedf04459f5fbd5b2f8f7c9 diff --git a/ShellPkg/Application/Shell/Shell.c b/ShellPkg/Application/Shell/Shell.c index 627fab0ad0..29c65b7f27 100644 --- a/ShellPkg/Application/Shell/Shell.c +++ b/ShellPkg/Application/Shell/Shell.c @@ -2139,11 +2139,24 @@ RunInternalCommand( CHAR16 **Argv; SHELL_STATUS CommandReturnedStatus; BOOLEAN LastError; + CHAR16 *Walker; + CHAR16 *NewCmdLine; + + NewCmdLine = AllocateCopyPool (StrSize (CmdLine), CmdLine); + if (NewCmdLine == NULL) { + return EFI_OUT_OF_RESOURCES; + } + + for (Walker = NewCmdLine; Walker != NULL && *Walker != CHAR_NULL ; Walker++) { + if (*Walker == L'^' && *(Walker+1) == L'#') { + CopyMem(Walker, Walker+1, StrSize(Walker) - sizeof(Walker[0])); + } + } // // get the argc and argv updated for internal commands // - Status = UpdateArgcArgv(ParamProtocol, CmdLine, &Argv, &Argc); + Status = UpdateArgcArgv(ParamProtocol, NewCmdLine, &Argv, &Argc); if (!EFI_ERROR(Status)) { // // Run the internal command. @@ -2204,6 +2217,7 @@ RunInternalCommand( Status = EFI_SUCCESS; } + FreePool (NewCmdLine); return (Status); } @@ -2466,7 +2480,7 @@ RunCommand( for (TempWalker = CleanOriginal; TempWalker != NULL && *TempWalker != CHAR_NULL; TempWalker++) { if (*TempWalker == L'^') { if (*(TempWalker + 1) == L'#') { - CopyMem (TempWalker, TempWalker + 1, StrSize (TempWalker) - sizeof (TempWalker[0])); + TempWalker++; } } else if (*TempWalker == L'#') { *TempWalker = CHAR_NULL; @@ -2710,8 +2724,10 @@ RunScriptFileHandle ( // for (CommandLine3 = CommandLine2 ; CommandLine3 != NULL && *CommandLine3 != CHAR_NULL ; CommandLine3++) { if (*CommandLine3 == L'^') { - if (*(CommandLine3+1) == L'#' || *(CommandLine3+1) == L':') { + if ( *(CommandLine3+1) == L':') { CopyMem(CommandLine3, CommandLine3+1, StrSize(CommandLine3) - sizeof(CommandLine3[0])); + } else if (*(CommandLine3+1) == L'#') { + CommandLine3++; } } else if (*CommandLine3 == L'#') { *CommandLine3 = CHAR_NULL;