mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 19:26:16 +00:00
- Fix an unshielded "return" inside a PSEH block.
svn path=/trunk/; revision=26652
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user