From 8c15d0505456d9861ad4b373bdd9342031ea276f Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Wed, 13 May 2015 19:54:18 -0700 Subject: common/memtest.c: Fix incorrect array boundary check Signed-off-by: Andrey Smirnov Signed-off-by: Sascha Hauer --- common/memtest.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'common') diff --git a/common/memtest.c b/common/memtest.c index 25a97d845c..3b0bcb7dc9 100644 --- a/common/memtest.c +++ b/common/memtest.c @@ -91,8 +91,7 @@ int mem_test(resource_size_t _start, * '0's and '0' bits through a field of '1's (i.e. * pattern and ~pattern). */ - for (i = 0; i < ARRAY_SIZE(bitpattern)/ - sizeof(resource_size_t); i++) { + for (i = 0; i < ARRAY_SIZE(bitpattern); i++) { val = bitpattern[i]; for (; val != 0; val <<= 1) { -- cgit v1.2.3