public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "gaoliming" <gaoliming@byosoft.com.cn>
To: <devel@edk2.groups.io>, <gaoliming@byosoft.com.cn>,
	<dandan.bi@intel.com>, "'Wenyi Xie'" <xiewenyi2@huawei.com>,
	"'Wang, Jian J'" <jian.j.wang@intel.com>,
	"'Wu, Hao A'" <hao.a.wu@intel.com>,
	"'Dong, Eric'" <eric.dong@intel.com>
Cc: <songdongkuang@huawei.com>
Subject: 回复: [edk2-devel] [PATCH EDK2 v1 1/1] MdeModulePkg/FileExplorerLib: Add return value check
Date: Fri, 15 Jan 2021 08:44:34 +0800	[thread overview]
Message-ID: <01a101d6ead7$98933220$c9b99660$@byosoft.com.cn> (raw)
In-Reply-To: <1659F55FB44C27DA.15468@groups.io>

Create PR https://github.com/tianocore/edk2/pull/1357

Thanks
Liming
> -----邮件原件-----
> 发件人: bounce+27952+70264+4905953+8761045@groups.io
> <bounce+27952+70264+4905953+8761045@groups.io> 代表 gaoliming
> 发送时间: 2021年1月14日 9:35
> 收件人: devel@edk2.groups.io; dandan.bi@intel.com; 'Wenyi Xie'
> <xiewenyi2@huawei.com>; 'Wang, Jian J' <jian.j.wang@intel.com>; 'Wu, Hao
> A' <hao.a.wu@intel.com>; 'Dong, Eric' <eric.dong@intel.com>
> 抄送: songdongkuang@huawei.com
> 主题: 回复: [edk2-devel] [PATCH EDK2 v1 1/1]
> MdeModulePkg/FileExplorerLib: Add return value check
> 
> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
> 
> > -----邮件原件-----
> > 发件人: bounce+27952+70200+4905953+8761045@groups.io
> > <bounce+27952+70200+4905953+8761045@groups.io> 代表 Dandan Bi
> > 发送时间: 2021年1月13日 14:07
> > 收件人: Wenyi Xie <xiewenyi2@huawei.com>; devel@edk2.groups.io;
> Wang,
> > Jian J <jian.j.wang@intel.com>; Wu, Hao A <hao.a.wu@intel.com>; Dong,
> Eric
> > <eric.dong@intel.com>
> > 抄送: songdongkuang@huawei.com
> > 主题: Re: [edk2-devel] [PATCH EDK2 v1 1/1]
> MdeModulePkg/FileExplorerLib:
> > Add return value check
> >
> > Reviewed-by: Dandan Bi <dandan.bi@intel.com>
> >
> >
> >
> > Thanks,
> > Dandan
> > > -----Original Message-----
> > > From: Wenyi Xie <xiewenyi2@huawei.com>
> > > Sent: Tuesday, January 12, 2021 3:07 PM
> > > To: devel@edk2.groups.io; Wang, Jian J <jian.j.wang@intel.com>; Wu,
> Hao
> > A
> > > <hao.a.wu@intel.com>; Bi, Dandan <dandan.bi@intel.com>; Dong, Eric
> > > <eric.dong@intel.com>
> > > Cc: songdongkuang@huawei.com; xiewenyi2@huawei.com
> > > Subject: [PATCH EDK2 v1 1/1] MdeModulePkg/FileExplorerLib: Add return
> > > value check
> > >
> > > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3113
> > > According to FAT specification, the length of file path should not larger than
> > > 260. When the length exceed 260, function FatLocateOFile will return
> > > EFI_INVALID_PARAMETER and the parameter FileHandle will be NULL.
> > Then
> > > on the top-level function,an exception happens when the NULL pointer is
> > > passed and be used.
> > > So adding return value check after calling LibGetFileHandleFromMenu, if
> > > return value is not success, stop calling LibFindFiles.
> > >
> > > Cc: Jian J Wang <jian.j.wang@intel.com>
> > > Cc: Hao A Wu <hao.a.wu@intel.com>
> > > Cc: Dandan Bi <dandan.bi@intel.com>
> > > Cc: Eric Dong <eric.dong@intel.com>
> > > Signed-off-by: Wenyi Xie <xiewenyi2@huawei.com>
> > > ---
> > >  MdeModulePkg/Library/FileExplorerLib/FileExplorer.c | 12 +++++++-----
> > >  1 file changed, 7 insertions(+), 5 deletions(-)
> > >
> > > diff --git a/MdeModulePkg/Library/FileExplorerLib/FileExplorer.c
> > > b/MdeModulePkg/Library/FileExplorerLib/FileExplorer.c
> > > index 13a214b06af9..03630a29bc3b 100644
> > > --- a/MdeModulePkg/Library/FileExplorerLib/FileExplorer.c
> > > +++ b/MdeModulePkg/Library/FileExplorerLib/FileExplorer.c
> > > @@ -1408,12 +1408,14 @@ LibUpdateFileExplorer (
> > >    if (NewFileContext->IsDir) {
> > >      RemoveEntryList (&NewMenuEntry->Link);
> > >      LibFreeMenu (gFileExplorerPrivate.FsOptionMenu);
> > > -    LibGetFileHandleFromMenu (NewMenuEntry, &FileHandle);
> > > -    Status = LibFindFiles (FileHandle, NewFileContext->FileName,
> > > NewFileContext->DeviceHandle);
> > > +    Status = LibGetFileHandleFromMenu (NewMenuEntry,
> &FileHandle);
> > >      if (!EFI_ERROR (Status)) {
> > > -      LibUpdateFileExplorePage ();
> > > -    } else {
> > > -      LibFreeMenu (gFileExplorerPrivate.FsOptionMenu);
> > > +      Status = LibFindFiles (FileHandle, NewFileContext->FileName,
> > > NewFileContext->DeviceHandle);
> > > +      if (!EFI_ERROR (Status)) {
> > > +        LibUpdateFileExplorePage ();
> > > +      } else {
> > > +        LibFreeMenu (gFileExplorerPrivate.FsOptionMenu);
> > > +      }
> > >      }
> > >      LibDestroyMenuEntry (NewMenuEntry);
> > >    }
> > > --
> > > 2.20.1.windows.1
> >
> >
> >
> >
> >
> 
> 
> 
> 
> 
> 
> 




      parent reply	other threads:[~2021-01-15  0:44 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-12  7:06 [PATCH EDK2 v1 0/1] MdeModulePkg/FileExplorerLib: Add return value check wenyi,xie
2021-01-12  7:06 ` [PATCH EDK2 v1 1/1] " wenyi,xie
2021-01-13  6:07   ` Dandan Bi
2021-01-14  1:35     ` 回复: [edk2-devel] " gaoliming
     [not found]     ` <1659F55FB44C27DA.15468@groups.io>
2021-01-15  0:44       ` gaoliming [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='01a101d6ead7$98933220$c9b99660$@byosoft.com.cn' \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox