mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
eccc97f15a
LVM2.2.02.112/daemons/clvmd/clvmd.c:1131: warning[arrayIndexOutOfBoundsCond]: Array 'row[8]' accessed at index 8, which is out of bounds. Otherwise condition 'j==8' is redundant. This code: int i,j = 0; ... for (i = 0; i < len; ++i) { ... if ((j == 8) || (i + 1 == len)) { for (;j < 8; ++j) { ... } ... j = 0; } } Indeed - j is 0 at the beginning, then iterating till j < 8, then always zeroed at the end of the outer loop - so "j" never reaching value of 8 - the j == 8 condition is redundant. |
||
---|---|---|
.. | ||
clvmd | ||
cmirrord | ||
dmeventd | ||
lvmetad | ||
Makefile.in |