mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 22:44:27 -05:00 
			
		
		
		
	packages: nvram: fix memory leak in _nvram_free
The value of nvram_tuple_t is allocated in _nvram_realloc, but it is not freed in _nvram_free. Signed-off-by: Zhai Zhaoxuan <zhaizhaoxuan@xiaomi.com>
This commit is contained in:
		
							parent
							
								
									2dca7177e7
								
							
						
					
					
						commit
						c382237ac3
					
				@ -47,6 +47,8 @@ static void _nvram_free(nvram_handle_t *h)
 | 
			
		||||
	for (i = 0; i < NVRAM_ARRAYSIZE(h->nvram_hash); i++) {
 | 
			
		||||
		for (t = h->nvram_hash[i]; t; t = next) {
 | 
			
		||||
			next = t->next;
 | 
			
		||||
			if (t->value)
 | 
			
		||||
				free(t->value);
 | 
			
		||||
			free(t);
 | 
			
		||||
		}
 | 
			
		||||
		h->nvram_hash[i] = NULL;
 | 
			
		||||
@ -55,6 +57,8 @@ static void _nvram_free(nvram_handle_t *h)
 | 
			
		||||
	/* Free dead table */
 | 
			
		||||
	for (t = h->nvram_dead; t; t = next) {
 | 
			
		||||
		next = t->next;
 | 
			
		||||
		if (t->value)
 | 
			
		||||
			free(t->value);
 | 
			
		||||
		free(t);
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user