mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 09:00:27 +00:00
- Fix an unshielded "return" inside a PSEH block.
svn path=/trunk/; revision=26652
This commit is contained in:
parent
64b29c8149
commit
182dd09c91
1 changed files with 4 additions and 1 deletions
|
@ -25,7 +25,10 @@ AfdGetInfo( PDEVICE_OBJECT DeviceObject, PIRP Irp,
|
|||
InfoReq ? InfoReq->InformationClass : 0));
|
||||
|
||||
_SEH_TRY {
|
||||
if( !SocketAcquireStateLock( FCB ) ) return LostSocket( Irp, TRUE );
|
||||
if( !SocketAcquireStateLock( FCB ) ) {
|
||||
Status = LostSocket( Irp, TRUE );
|
||||
_SEH_YIELD(return Status);
|
||||
}
|
||||
|
||||
switch( InfoReq->InformationClass ) {
|
||||
case AFD_INFO_RECEIVE_WINDOW_SIZE:
|
||||
|
|
Loading…
Reference in a new issue