From 00afc8f82061677fedc86cb05e3b8c75a3c986ff Mon Sep 17 00:00:00 2001 From: Dandan Bi Date: Tue, 23 Aug 2016 10:29:08 +0800 Subject: [PATCH] ShellPkg: Fix the incorrect return status in function FindFiles() According to the latest shell spec, in function FindFiles(), when no files were found, it should return EFI_NOT_FOUND. But current codes don't follow the spec. This patch is to fix this issue. Cc: Ruiyu Ni Cc: Jaben Carsey Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Dandan Bi Reviewed-by: Ruiyu Ni --- ShellPkg/Application/Shell/ShellProtocol.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ShellPkg/Application/Shell/ShellProtocol.c b/ShellPkg/Application/Shell/ShellProtocol.c index 0e5d954e45..6f292507a9 100644 --- a/ShellPkg/Application/Shell/ShellProtocol.c +++ b/ShellPkg/Application/Shell/ShellProtocol.c @@ -2509,6 +2509,10 @@ ShellSearchHandle( } } + if (*FileList == NULL || (*FileList != NULL && IsListEmpty(&(*FileList)->Link))) { + Status = EFI_NOT_FOUND; + } + FreePool(CurrentFilePattern); return (Status); } -- 2.39.5