Stop processing if we freed the client

This commit is contained in:
Ondřej Kuzník 2017-07-12 09:03:49 +01:00 committed by Ondřej Kuzník
parent f7cf34e69c
commit e03c9e6fb4

View file

@ -843,5 +843,8 @@ fail:
op->o_client_refcnt--;
operation_destroy_from_client( op );
CLIENT_UNLOCK_OR_DESTROY(client);
if ( !client ) {
rc = -1;
}
return rc;
}