make preload script for testing a bit more robust

pull/50/head
Daniel Micay 2018-08-30 09:08:33 -04:00
parent 1ea997b887
commit af393afc09
1 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
dir=$(cd "$(dirname ${BASH_SOURCE[0]})" && pwd) dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
[[ $LD_PRELOAD ]] && LD_PRELOAD+=" "
export LD_PRELOAD+="$dir/hardened_malloc.so" export LD_PRELOAD+="$dir/hardened_malloc.so"
exec $@ exec "$@"