Re: [ 011/120] lib/gcd.c: prevent possible div by 0

2012-10-12 Thread Greg Kroah-Hartman
On Fri, Oct 12, 2012 at 10:11:24PM +0100, Ben Hutchings wrote: > On Thu, 2012-10-11 at 09:59 +0900, Greg Kroah-Hartman wrote: > > 3.4-stable review patch. If anyone has any objections, please let me know. > > > > -- > > > > From: Davidlohr Bueso > > > > commit e96875677fb2b7cb7

Re: [ 011/120] lib/gcd.c: prevent possible div by 0

2012-10-12 Thread Ben Hutchings
On Thu, 2012-10-11 at 09:59 +0900, Greg Kroah-Hartman wrote: > 3.4-stable review patch. If anyone has any objections, please let me know. > > -- > > From: Davidlohr Bueso > > commit e96875677fb2b7cb739c5d7769824dff7260d31d upstream. > > Account for all properties when a and/or

[ 011/120] lib/gcd.c: prevent possible div by 0

2012-10-10 Thread Greg Kroah-Hartman
3.4-stable review patch. If anyone has any objections, please let me know. -- From: Davidlohr Bueso commit e96875677fb2b7cb739c5d7769824dff7260d31d upstream. 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