[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1321360839-26451-1-git-send-email-vbyravarasu@nvidia.com>
Date: Tue, 15 Nov 2011 18:10:39 +0530
From: vbyravarasu@...dia.com
To: linux-kernel@...r.kernel.org
Cc: venu byravarasu <vbyravarasu@...dia.com>
Subject: [PATCH] bcd: limit bin2bcd input value to lie between 0-99
From: venu byravarasu <vbyravarasu@...dia.com>
If bin2bcd gets a value which is more than 100,
there are chances that it may store non decimal
value in the most significant nibble.
e.g. say val passed to bin2bcd is 112.
In that case the expected value to be returned by
this function is 12.
However, without the fix being added it would
be 112.
Signed-off-by: venu byravarasu <vbyravarasu@...dia.com>
---
lib/bcd.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/lib/bcd.c b/lib/bcd.c
index d74257f..d715474 100644
--- a/lib/bcd.c
+++ b/lib/bcd.c
@@ -9,6 +9,7 @@ EXPORT_SYMBOL(bcd2bin);
unsigned char bin2bcd(unsigned val)
{
+ val %= 100;
return ((val / 10) << 4) + val % 10;
}
EXPORT_SYMBOL(bin2bcd);
--
1.7.1.1
--
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