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:
lpleahy 2012-02-15 23:24:58 +00:00
parent 66a2dc96d3
commit 28de825561
1 changed files with 1 additions and 1 deletions

View File

@ -2567,7 +2567,7 @@ EslSocketListen (
// Create the event for SocketAccept completion
//
Status = gBS->CreateEvent ( 0,
TplPrevious,
TPL_SOCKETS,
NULL,
NULL,
&pSocket->WaitAccept );