mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	iio: Use kmalloc_array() in iio_scan_mask_set()
A multiplication for the size determination of a memory allocation indicated that an array data structure should be processed. Thus use the corresponding function "kmalloc_array". This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
		
							parent
							
								
									1b14adcaf6
								
							
						
					
					
						commit
						057ac1acdf
					
				
					 1 changed files with 3 additions and 4 deletions
				
			
		| 
						 | 
				
			
			@ -307,10 +307,9 @@ static int iio_scan_mask_set(struct iio_dev *indio_dev,
 | 
			
		|||
	const unsigned long *mask;
 | 
			
		||||
	unsigned long *trialmask;
 | 
			
		||||
 | 
			
		||||
	trialmask = kmalloc(sizeof(*trialmask)*
 | 
			
		||||
			    BITS_TO_LONGS(indio_dev->masklength),
 | 
			
		||||
	trialmask = kmalloc_array(BITS_TO_LONGS(indio_dev->masklength),
 | 
			
		||||
				  sizeof(*trialmask),
 | 
			
		||||
				  GFP_KERNEL);
 | 
			
		||||
 | 
			
		||||
	if (trialmask == NULL)
 | 
			
		||||
		return -ENOMEM;
 | 
			
		||||
	if (!indio_dev->masklength) {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue