summaryrefslogtreecommitdiffstats
path: root/xlators/protocol
diff options
context:
space:
mode:
Diffstat (limited to 'xlators/protocol')
-rw-r--r--xlators/protocol/server/src/server-helpers.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/xlators/protocol/server/src/server-helpers.c b/xlators/protocol/server/src/server-helpers.c
index 112712e7f87..88dada1516e 100644
--- a/xlators/protocol/server/src/server-helpers.c
+++ b/xlators/protocol/server/src/server-helpers.c
@@ -831,13 +831,15 @@ server_connection_destroy (xlator_t *this, server_connection_t *conn)
}
}
- state = CALL_STATE (frame);
- if (state)
- free (state);
- STACK_DESTROY (frame->root);
+ if (frame) {
+ state = CALL_STATE (frame);
+ if (state)
+ free (state);
+ STACK_DESTROY (frame->root);
+ }
- gf_log (this->name, GF_LOG_INFO, "destroyed connection of %s",
- conn->id);
+ gf_log (this->name, GF_LOG_INFO, "destroyed connection of %s",
+ conn->id);
FREE (conn->id);
FREE (conn);