diff options
| -rw-r--r-- | glusterfsd/src/glusterfsd-mgmt.c | 4 | ||||
| -rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-volume-ops.c | 2 | 
2 files changed, 3 insertions, 3 deletions
diff --git a/glusterfsd/src/glusterfsd-mgmt.c b/glusterfsd/src/glusterfsd-mgmt.c index 0484779ce55..de2829ddd13 100644 --- a/glusterfsd/src/glusterfsd-mgmt.c +++ b/glusterfsd/src/glusterfsd-mgmt.c @@ -365,7 +365,7 @@ glusterfs_volume_top_write_perf (uint32_t blk_size, uint32_t blk_count,  {          int32_t                 fd = -1;          int32_t                 input_fd = -1; -        char                    export_path[PATH_MAX]; +        char                    export_path[PATH_MAX] = {0,};          char                    *buf = NULL;          int32_t                 iter = 0;          int32_t                 ret = -1; @@ -448,7 +448,7 @@ glusterfs_volume_top_read_perf (uint32_t blk_size, uint32_t blk_count,          int32_t                 fd = -1;          int32_t                 input_fd = -1;          int32_t                 output_fd = -1; -        char                    export_path[PATH_MAX]; +        char                    export_path[PATH_MAX] = {0,};          char                    *buf = NULL;          int32_t                 iter = 0;          int32_t                 ret = -1; diff --git a/xlators/mgmt/glusterd/src/glusterd-volume-ops.c b/xlators/mgmt/glusterd/src/glusterd-volume-ops.c index db9f39c7c05..85a53730602 100644 --- a/xlators/mgmt/glusterd/src/glusterd-volume-ops.c +++ b/xlators/mgmt/glusterd/src/glusterd-volume-ops.c @@ -923,7 +923,7 @@ glusterd_op_stage_start_volume (dict_t *dict, char **op_errstr)          gf_boolean_t                            exists = _gf_false;          glusterd_volinfo_t                      *volinfo = NULL;          glusterd_brickinfo_t                    *brickinfo = NULL; -        char                                    msg[2048]; +        char                                    msg[2048] = {0,};          glusterd_conf_t                         *priv = NULL;          xlator_t                                *this = NULL;          uuid_t                                  volume_id = {0,};  | 
