lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <4AE618BB.4060601@gmail.com> Date: Mon, 26 Oct 2009 22:46:35 +0100 From: Roel Kluin <roel.kluin@...il.com> To: Roel Kluin <roel.kluin@...il.com> CC: Russell King <linux@....linux.org.uk>, linux-arm-kernel@...ts.infradead.org, Andrew Morton <akpm@...ux-foundation.org>, LKML <linux-kernel@...r.kernel.org> Subject: [PATCH] icst525: Add missing increment Without this increment the loop can only break if it does in the first iteration. Signed-off-by: Roel Kluin <roel.kluin@...il.com> --- arch/arm/common/icst525.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Same issue, different file. diff --git a/arch/arm/common/icst525.c b/arch/arm/common/icst525.c index 3d377c5..0aef96a 100644 --- a/arch/arm/common/icst525.c +++ b/arch/arm/common/icst525.c @@ -53,7 +53,7 @@ icst525_khz_to_vco(const struct icst525_params *p, unsigned long freq) */ if (f > 10000 && f <= p->vco_max) break; - } while (i < ARRAY_SIZE(idx2s)); + } while (++i < ARRAY_SIZE(idx2s)); if (i >= ARRAY_SIZE(idx2s)) return vco; @@ -116,7 +116,7 @@ icst525_ps_to_vco(const struct icst525_params *p, unsigned long period) */ if (f >= ps && f < 100000) break; - } while (i < ARRAY_SIZE(idx2s)); + } while (++i < ARRAY_SIZE(idx2s)); if (i >= ARRAY_SIZE(idx2s)) return vco; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists