about summary refs log tree commit diff
path: root/docs/best_practices.md
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2021-11-06 10:28:22 +0100
committervanhauser-thc <vh@thc.org>2021-11-06 10:28:22 +0100
commit9325a4fcbb8eb4ed1d71f93de5301bf1a9a68253 (patch)
tree9d519e53a0818d81ae09abe65224c7cd73debdc0 /docs/best_practices.md
parentddc930f5ffd329692c4969b38977df8c1835b733 (diff)
downloadafl++-9325a4fcbb8eb4ed1d71f93de5301bf1a9a68253.tar.gz
http->https
Diffstat (limited to 'docs/best_practices.md')
-rw-r--r--docs/best_practices.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/best_practices.md b/docs/best_practices.md
index 0708d49d..5d07dd14 100644
--- a/docs/best_practices.md
+++ b/docs/best_practices.md
@@ -108,7 +108,7 @@ Four steps are required to do this and it also requires quite some knowledge of
 
      Follow this document on how to do this: [instrumentation/README.instrument_list.md](../instrumentation/README.instrument_list.md).
      If `PCGUARD` is used, then you need to follow this guide (needs llvm 12+!):
-     [http://clang.llvm.org/docs/SanitizerCoverage.html#partially-disabling-instrumentation](http://clang.llvm.org/docs/SanitizerCoverage.html#partially-disabling-instrumentation)
+     [https://clang.llvm.org/docs/SanitizerCoverage.html#partially-disabling-instrumentation](https://clang.llvm.org/docs/SanitizerCoverage.html#partially-disabling-instrumentation)
 
      Only exclude those functions from instrumentation that provide no value for coverage - that is if it does not process any fuzz data directly or indirectly (e.g. hash maps, thread management etc.).
      If however a function directly or indirectly handles fuzz data, then you should not put the function in a deny instrumentation list and rather live with the instability it comes with.