mirror of https://github.com/acidanthera/audk.git
Bug fix: CreateEvent sometimes returning EFI_INVALID_PARAMETER due to bad TPL value. Use known good TPL value since TPL is a don't care.
Found, reviewed and tested by: Duane Voth Signed-off-by: lpleahy git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13017 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
66a2dc96d3
commit
28de825561
|
@ -2567,7 +2567,7 @@ EslSocketListen (
|
|||
// Create the event for SocketAccept completion
|
||||
//
|
||||
Status = gBS->CreateEvent ( 0,
|
||||
TplPrevious,
|
||||
TPL_SOCKETS,
|
||||
NULL,
|
||||
NULL,
|
||||
&pSocket->WaitAccept );
|
||||
|
|
Loading…
Reference in New Issue