mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2026-05-25 00:41:50 -04:00
9 lines
154 B
Bash
Executable File
9 lines
154 B
Bash
Executable File
#!/bin/sh
|
|
# Helper script to run a program under electric-fence / duma
|
|
|
|
# prevent core dumps
|
|
ulimit -c 0
|
|
LD_PRELOAD=$LIBPRELOAD
|
|
export LD_PRELOAD
|
|
exec $@
|