mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
dlm: last element of dlm_local_addr[] never used
The last element of dlm_local_addr[DLM_MAX_ADDR_COUNT] was not used because the loop ended at COUNT - 1. Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David Teigland <teigland@redhat.com>
This commit is contained in:
parent
7210cb7a72
commit
1b189b8889
@ -1082,7 +1082,7 @@ static void init_local(void)
|
|||||||
int i;
|
int i;
|
||||||
|
|
||||||
dlm_local_count = 0;
|
dlm_local_count = 0;
|
||||||
for (i = 0; i < DLM_MAX_ADDR_COUNT - 1; i++) {
|
for (i = 0; i < DLM_MAX_ADDR_COUNT; i++) {
|
||||||
if (dlm_our_addr(&sas, i))
|
if (dlm_our_addr(&sas, i))
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user