diff options
| -rw-r--r-- | glusterfsd/src/glusterfsd-mgmt.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/glusterfsd/src/glusterfsd-mgmt.c b/glusterfsd/src/glusterfsd-mgmt.c index 4339842768f..54b8215c967 100644 --- a/glusterfsd/src/glusterfsd-mgmt.c +++ b/glusterfsd/src/glusterfsd-mgmt.c @@ -1312,6 +1312,11 @@ glusterfs_handle_node_status(rpcsvc_request_t *req)      ctx = glusterfsd_ctx;      GF_ASSERT(ctx);      active = ctx->active; +    if (active == NULL) { +        gf_log(THIS->name, GF_LOG_ERROR, "ctx->active returned NULL"); +        ret = -1; +        goto out; +    }      any = active->first;      if ((cmd & GF_CLI_STATUS_NFS) != 0)  | 
