From 69fa16048a61b6cd0b8fe9c311dd4e9eea532207 Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Mon, 17 Aug 2015 18:31:11 +0100 Subject: [PATCH] dmstats: check for zero in _nr_areas_from_step() (Coverity) --- tools/dmsetup.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/dmsetup.c b/tools/dmsetup.c index 8bcf4d5c8..7769fde6b 100644 --- a/tools/dmsetup.c +++ b/tools/dmsetup.c @@ -4434,6 +4434,10 @@ static int _size_from_string(char *argptr, uint64_t *size, const char *name) */ static uint64_t _nr_areas_from_step(uint64_t len, int64_t step) { + /* Default is one area. */ + if (!step || !len) + return 1; + /* --areas */ if (step < 0) return (uint64_t)(-step);