[PATCH] D33522: [libFuzzer] Don't replace custom signal handlers.
Kostya Serebryany via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed May 24 18:00:44 PDT 2017
kcc accepted this revision.
kcc added a comment.
This revision is now accepted and ready to land.
LGTM with a nit.
================
Comment at: lib/Fuzzer/FuzzerUtilPosix.cpp:60
+ if (sigact.sa_handler != SIG_DFL && sigact.sa_handler != SIG_IGN &&
+ sigact.sa_handler != SIG_ERR) {
+ return;
----------------
no {}
https://reviews.llvm.org/D33522
More information about the llvm-commits
mailing list