mirror of
				https://github.com/Cisco-Talos/clamav.git
				synced 2025-10-31 16:10:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			191 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			191 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/sh
 | |
| # Helper script to run a program under electric-fence / duma
 | |
| 
 | |
| # prevent core dumps
 | |
| ulimit -c 0 || true
 | |
| LD_PRELOAD=$LIBPRELOAD
 | |
| export LD_PRELOAD
 | |
| export CK_DEFAULT_TIMEOUT=40
 | |
| exec $@
 | 
