mirror of
https://github.com/reactos/reactos.git
synced 2025-04-28 01:11:35 +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));
|
InfoReq ? InfoReq->InformationClass : 0));
|
||||||
|
|
||||||
_SEH_TRY {
|
_SEH_TRY {
|
||||||
if( !SocketAcquireStateLock( FCB ) ) return LostSocket( Irp, TRUE );
|
if( !SocketAcquireStateLock( FCB ) ) {
|
||||||
|
Status = LostSocket( Irp, TRUE );
|
||||||
|
_SEH_YIELD(return Status);
|
||||||
|
}
|
||||||
|
|
||||||
switch( InfoReq->InformationClass ) {
|
switch( InfoReq->InformationClass ) {
|
||||||
case AFD_INFO_RECEIVE_WINDOW_SIZE:
|
case AFD_INFO_RECEIVE_WINDOW_SIZE:
|
||||||
|
|
Loading…
Reference in a new issue