Fix missing initilisation to 0
authorZdenek Kabelac <zkabelac@redhat.com>
Mon, 25 Oct 2010 12:59:24 +0000 (12:59 +0000)
committerZdenek Kabelac <zkabelac@redhat.com>
Mon, 25 Oct 2010 12:59:24 +0000 (12:59 +0000)
Add missing init value for variable 'found' which is later tested and may
have contained some garbage value.

WHATS_NEW
daemons/cmirrord/cluster.c

index 678ff87d49107fa32f41247d909466da6283d9a3..52d69fa0e5e938529b41dc6920d8ca0c7eb375e8 100644 (file)
--- a/WHATS_NEW
+++ b/WHATS_NEW
@@ -1,5 +1,6 @@
 Version 2.02.75 - 
 =====================================
+  Fix missing initilization in cluser_send() function rom cmirrord.
   Fix pointer for VG name in _pv_resize_single error code path.
   Fix warning for changed alignment requirements for dmeventd read/write func.
   Add global/metadata_read_only to use unrepaired metadata in read-only cmds.
index dddaec93dd841e2e7552c548411dd09207449dcb..b6c925aa05cd301ec2e9adfda7b68dbf8cb5055f 100644 (file)
@@ -129,7 +129,7 @@ int cluster_send(struct clog_request *rq)
 {
        int r;
        int count=0;
-       int found;
+       int found = 0;
        struct iovec iov;
        struct clog_cpg *entry;
 
This page took 0.044821 seconds and 5 git commands to generate.