make preload script for testing a bit more robust

This commit is contained in:
Daniel Micay 2018-08-30 09:08:33 -04:00
parent 1ea997b887
commit af393afc09

View File

@ -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 "$@"