[llvm] r354392 - [libFuzzer] docs: add a FAQ entry about dlclose

Kostya Serebryany via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 19 14:11:50 PST 2019


Author: kcc
Date: Tue Feb 19 14:11:50 2019
New Revision: 354392

URL: http://llvm.org/viewvc/llvm-project?rev=354392&view=rev
Log:
[libFuzzer] docs: add a FAQ entry about dlclose

Modified:
    llvm/trunk/docs/LibFuzzer.rst

Modified: llvm/trunk/docs/LibFuzzer.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LibFuzzer.rst?rev=354392&r1=354391&r2=354392&view=diff
==============================================================================
--- llvm/trunk/docs/LibFuzzer.rst (original)
+++ llvm/trunk/docs/LibFuzzer.rst Tue Feb 19 14:11:50 2019
@@ -691,6 +691,13 @@ to crash on invalid inputs.
 Examples: regular expression matchers, text or binary format parsers, compression,
 network, crypto.
 
+Q. LibFuzzer crashes on my complicated fuzz target (but works fine for me on smaller targets).
+----------------------------------------------------------------------------------------------
+
+Check if your fuzz target uses ``dlclose``.
+Currently, libFuzzer doesn't support targets that call ``dlclose``,
+this may be fixed in future.
+
 
 Trophies
 ========




More information about the llvm-commits mailing list