summaryrefslogtreecommitdiff
path: root/libdm
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2017-06-27 12:05:27 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2017-06-27 12:16:33 +0200
commit5ff6260071ef2465ba33ce6dd9b7c7b3168f4c88 (patch)
tree30fda51272c1a060978c33292302a23b940bac0a /libdm
parent0349b6d889551b33d4bf26ffaa71dc6c0eb88198 (diff)
downloadlvm2-5ff6260071ef2465ba33ce6dd9b7c7b3168f4c88.tar.gz
coverity: move initilization of count variable
Make code more understandble for Coverity, so it sees connection between 'extents' and 'count' and in fact code is more readable.
Diffstat (limited to 'libdm')
-rw-r--r--libdm/libdm-stats.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libdm/libdm-stats.c b/libdm/libdm-stats.c
index b0c9e4bd4..5cb7c2c60 100644
--- a/libdm/libdm-stats.c
+++ b/libdm/libdm-stats.c
@@ -4606,6 +4606,7 @@ static uint64_t *_stats_map_file_regions(struct dm_stats *dms, int fd,
struct stat buf;
int update;
+ *count = 0;
update = _stats_group_id_present(dms, group_id);
#ifdef BTRFS_SUPER_MAGIC
@@ -4771,7 +4772,7 @@ uint64_t *dm_stats_create_regions_from_fd(struct dm_stats *dms, int fd,
struct dm_histogram *bounds,
const char *alias)
{
- uint64_t *regions, count = 0;
+ uint64_t *regions, count;
int regroup = 1;
if (alias && !group) {