mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-04-19 22:10:19 +02:00
make preload script for testing a bit more robust
This commit is contained in:
parent
1ea997b887
commit
af393afc09
1 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
dir=$(cd "$(dirname ${BASH_SOURCE[0]})" && pwd)
|
||||
export LD_PRELOAD+=" $dir/hardened_malloc.so"
|
||||
exec $@
|
||||
dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
[[ $LD_PRELOAD ]] && LD_PRELOAD+=" "
|
||||
export LD_PRELOAD+="$dir/hardened_malloc.so"
|
||||
exec "$@"
|
||||
|
|
Loading…
Add table
Reference in a new issue