mirror of
				https://github.com/labwc/labwc.git
				synced 2025-11-03 09:01:51 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			179 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			179 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0-only
 | 
						|
#include <stdlib.h>
 | 
						|
#include "common/zfree.h"
 | 
						|
 | 
						|
void __zfree(void **ptr)
 | 
						|
{
 | 
						|
	if (!ptr || !*ptr) {
 | 
						|
		return;
 | 
						|
	}
 | 
						|
	free(*ptr);
 | 
						|
	*ptr = NULL;
 | 
						|
}
 |