[PATCH] D39155: [libFuzzer] Periodically purge allocator's quarantine to prolong fuzzing sessions.

Kostya Serebryany via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 23 15:42:57 PDT 2017


kcc added inline comments.


================
Comment at: compiler-rt/trunk/lib/fuzzer/FuzzerLoop.cpp:603
+  if (Options.PurgeAllocatorIntervalSec < 0 ||
+      !EF->__sanitizer_purge_allocator) {
+    return;
----------------
Style nit pick. 
libFuzzer tries to follow the LLVM code style exactly, and in that style we don't use {} in statements like this. (here, and below in this function)


Repository:
  rL LLVM

https://reviews.llvm.org/D39155





More information about the llvm-commits mailing list