mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
Fix missing initilisation to 0
Add missing init value for variable 'found' which is later tested and may have contained some garbage value.
This commit is contained in:
parent
30b36dc0e8
commit
321ae653b6
@ -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.
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user