mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	parport: fix memory leak
After the reference count becomes 0 when put_device() is called, it will execute the release callback where we are freeing all the allocated memory associated with the device. We missed freeing par_dev->state. Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
		
							parent
							
								
									cabea69587
								
							
						
					
					
						commit
						23c405912b
					
				
					 1 changed files with 1 additions and 0 deletions
				
			
		| 
						 | 
					@ -816,6 +816,7 @@ static void free_pardevice(struct device *dev)
 | 
				
			||||||
	struct pardevice *par_dev = to_pardevice(dev);
 | 
						struct pardevice *par_dev = to_pardevice(dev);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	kfree(par_dev->name);
 | 
						kfree(par_dev->name);
 | 
				
			||||||
 | 
						kfree(par_dev->state);
 | 
				
			||||||
	kfree(par_dev);
 | 
						kfree(par_dev);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue