mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-27 07:34:06 +02:00
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
|
// Create the event for SocketAccept completion
|
||||||
//
|
//
|
||||||
Status = gBS->CreateEvent ( 0,
|
Status = gBS->CreateEvent ( 0,
|
||||||
TplPrevious,
|
TPL_SOCKETS,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
&pSocket->WaitAccept );
|
&pSocket->WaitAccept );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user