aboutsummaryrefslogtreecommitdiff
path: root/projects/httplib2
diff options
context:
space:
mode:
authorFabian Meumertzheim <meumertzheim@code-intelligence.com>2021-05-12 16:03:21 +0200
committerGitHub <noreply@github.com>2021-05-12 07:03:21 -0700
commit10e888b5617ee53f03f58b76aa408b9adec9286e (patch)
tree2cbac5f118ac61db8f3c93852a928d2af6105ecb /projects/httplib2
parentc447cfedf46682dbabc05668e446419d47e22964 (diff)
downloadoss-fuzz-10e888b5617ee53f03f58b76aa408b9adec9286e.tar.gz
[all] Make fuzz targets world executable (#5751)
Making fuzz targets only user executable as the root user makes them non-executable outside the container, e.g. in the oss-fuzz/build/ dir.
Diffstat (limited to 'projects/httplib2')
-rw-r--r--projects/httplib2/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/httplib2/build.sh b/projects/httplib2/build.sh
index 7a95cbeef..ba9410d8e 100644
--- a/projects/httplib2/build.sh
+++ b/projects/httplib2/build.sh
@@ -31,5 +31,5 @@ this_dir=\$(dirname \"\$0\")
LD_PRELOAD=\$this_dir/sanitizer_with_fuzzer.so \
ASAN_OPTIONS=\$ASAN_OPTIONS:symbolize=1:external_symbolizer_path=\$this_dir/llvm-symbolizer:detect_leaks=0 \
\$this_dir/$fuzzer_package \$@" > $OUT/$fuzzer_basename
- chmod u+x $OUT/$fuzzer_basename
+ chmod +x $OUT/$fuzzer_basename
done