mirror of
				https://github.com/swaywm/sway.git
				synced 2025-11-03 09:01:43 -05:00 
			
		
		
		
	Do not set FD_CLOEXEC
This commit is contained in:
		
							parent
							
								
									eb003689a3
								
							
						
					
					
						commit
						47c7ed9f3a
					
				
					 1 changed files with 0 additions and 9 deletions
				
			
		| 
						 | 
				
			
			@ -22,15 +22,6 @@ static const char *verbosity_colors[] = {
 | 
			
		|||
 | 
			
		||||
void init_log(log_importance_t verbosity) {
 | 
			
		||||
	v = verbosity;
 | 
			
		||||
	/* set FD_CLOEXEC flag to prevent programs called with exec to write into logs */
 | 
			
		||||
	int i;
 | 
			
		||||
	int fd[] = { STDOUT_FILENO, STDIN_FILENO, STDERR_FILENO };
 | 
			
		||||
	for (i = 0; i < 3; ++i) {
 | 
			
		||||
		int flag = fcntl(fd[i], F_GETFD);
 | 
			
		||||
		if (flag != -1) {
 | 
			
		||||
			fcntl(fd[i], F_SETFD, flag | FD_CLOEXEC);
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
	signal(SIGSEGV, error_handler);
 | 
			
		||||
	signal(SIGABRT, error_handler);
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue