diff options
author | Davidlohr Bueso <[email protected]> | 2012-10-04 17:13:18 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2012-10-06 03:04:57 +0900 |
commit | e96875677fb2b7cb739c5d7769824dff7260d31d (patch) | |
tree | 4d33caeb4dc7584832945427ed8890b3e5c856db | |
parent | 8f1f66ed7e1bdb7c88bb0bc45ac78cd075430d78 (diff) |
lib/gcd.c: prevent possible div by 0
Account for all properties when a and/or b are 0:
gcd(0, 0) = 0
gcd(a, 0) = a
gcd(0, b) = b
Fixes no known problems in current kernels.
Signed-off-by: Davidlohr Bueso <[email protected]>
Cc: Eric Dumazet <[email protected]>
Cc: <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | lib/gcd.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/gcd.c b/lib/gcd.c index cce4f3cd14b3..3657f129d7b8 100644 --- a/lib/gcd.c +++ b/lib/gcd.c @@ -9,6 +9,9 @@ unsigned long gcd(unsigned long a, unsigned long b) if (a < b) swap(a, b); + + if (!b) + return a; while ((r = a % b) != 0) { a = b; b = r; |