[Cluster-devel] [PATCH 40/41] qdiskd: fix uninitialized values

Fabio M. Di Nitto fdinitto at redhat.com
Wed Nov 23 10:15:59 UTC 2011


Spotted by Coverity Scan

Signed-off-by: Fabio M. Di Nitto <fdinitto at redhat.com>
---
:100644 100644 b99a672... b80046b... M	cman/qdisk/scandisk.c
 cman/qdisk/scandisk.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/cman/qdisk/scandisk.c b/cman/qdisk/scandisk.c
index b99a672..b80046b 100644
--- a/cman/qdisk/scandisk.c
+++ b/cman/qdisk/scandisk.c
@@ -642,7 +642,7 @@ static int sysfs_is_disk(char *path)
 static int scansysfs(struct devlisthead *devlisthead, const char *path, int level, int parent_holder)
 {
 	struct devnode *startnode;
-	int i, n, maj, min, has_holder;
+	int i, n, maj = -1, min = -1, has_holder;
 	struct dirent **namelist;
 	struct stat sb;
 	char newpath[MAXPATHLEN];
-- 
1.7.4.4




More information about the Cluster-devel mailing list