mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 10:26:10 +01:00 
			
		
		
		
	dfu: avoid memory leak
When dfu_fill_entity fail, need to free dfu to avoid memory leak. Reported by Coverity: " Resource leak (RESOURCE_LEAK) leaked_storage: Variable dfu going out of scope leaks the storage it points to. " Signed-off-by: Peng Fan <van.freenix@gmail.com> Cc: "Łukasz Majewski" <l.majewski@samsung.com> Cc: Marek Vasut <marex@denx.de>
This commit is contained in:
		| @@ -468,8 +468,10 @@ int dfu_config_entities(char *env, char *interface, char *devstr) | ||||
| 		s = strsep(&env, ";"); | ||||
| 		ret = dfu_fill_entity(&dfu[i], s, alt_num_cnt, interface, | ||||
| 				      devstr); | ||||
| 		if (ret) | ||||
| 		if (ret) { | ||||
| 			free(dfu); | ||||
| 			return -1; | ||||
| 		} | ||||
|  | ||||
| 		list_add_tail(&dfu[i].list, &dfu_list); | ||||
| 		alt_num_cnt++; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user