diff options
author | Sachin Pandit <spandit@redhat.com> | 2013-10-29 10:39:41 +0000 |
---|---|---|
committer | Sachin Pandit <spandit@redhat.com> | 2013-10-29 10:40:25 +0000 |
commit | 3bdc7427f268a3582d2a0240bf764fddd3201b46 (patch) | |
tree | 3fa5262ffd551b3643e1a5196015aa8fd9fc1a78 | |
parent | 07422ad21fd23db212f83777b1022350c5560876 (diff) |
"priv" variable was not getting initialized.
Fixed it now.
Change-Id: I2a3216fe079f546855fd17fa6ff69b023341772c
Signed-off-by: Sachin Pandit <spandit@redhat.com>
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-snapshot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-snapshot.c b/xlators/mgmt/glusterd/src/glusterd-snapshot.c index 6c365230b..513d83616 100644 --- a/xlators/mgmt/glusterd/src/glusterd-snapshot.c +++ b/xlators/mgmt/glusterd/src/glusterd-snapshot.c @@ -2283,7 +2283,7 @@ glusterd_snapshot_create_commit (dict_t *dict, char **op_errstr, char err_str[PATH_MAX] = {0, }; this = THIS; - + priv = this->private; ret = dict_get_int64 (dict, "volcount", &volume_count); if (ret) { gf_log (this->name, GF_LOG_ERROR, "failed to " |