diff options
Diffstat (limited to 'xlators/cluster/ha/src/ha-helpers.c')
| -rw-r--r-- | xlators/cluster/ha/src/ha-helpers.c | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/xlators/cluster/ha/src/ha-helpers.c b/xlators/cluster/ha/src/ha-helpers.c index 4bc7d5e20de..a8c1bff9968 100644 --- a/xlators/cluster/ha/src/ha-helpers.c +++ b/xlators/cluster/ha/src/ha-helpers.c @@ -141,11 +141,17 @@ int ha_handle_cbk (call_frame_t *frame, void *cookie, int op_ret, int op_errno)  			}  		}  	} -	if (local->stub) +	if (local->stub) {  		call_stub_destroy (local->stub); +                local->stub = NULL; +        } +  	if (local->fd) {  		FREE (local->state); +                local->state = NULL; +  		fd_unref (local->fd); +                local->fd = NULL;  	}  	return 0;  }  | 
