30 lines
		
	
	
	
		
			752 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			752 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
| This file is part of Telegram Desktop,
 | |
| the official desktop application for the Telegram messaging service.
 | |
| 
 | |
| For license and copyright information please follow this link:
 | |
| https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
 | |
| */
 | |
| #include <stdlib.h>
 | |
| #include <unistd.h>
 | |
| #include <sys/types.h>
 | |
| 
 | |
| void *__wrap_aligned_alloc(size_t alignment, size_t size) {
 | |
| 	void *result = NULL;
 | |
| 	return (posix_memalign(&result, alignment, size) == 0)
 | |
| 		? result
 | |
| 		: NULL;
 | |
| }
 | |
| 
 | |
| int enable_secure_inited = 0;
 | |
| int enable_secure = 1;
 | |
| 
 | |
| char *__wrap_secure_getenv(const char *name) {
 | |
| 	if (enable_secure_inited == 0) {
 | |
| 		enable_secure_inited = 1;
 | |
| 		enable_secure = (geteuid() != getuid())
 | |
| 		|| (getegid() != getgid());
 | |
| 	}
 | |
| 	return enable_secure ? NULL : getenv(name);
 | |
| }
 | |
| 
 | 
