diff options
author | vanhauser-thc <vh@thc.org> | 2024-05-14 12:35:32 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2024-05-14 12:35:32 +0200 |
commit | 29c98706584f6089f30cfd8540571d4ead92b416 (patch) | |
tree | 598308b252ec6cd4cadd0b8c24ac0e3f7c13883b /instrumentation/compare-transform-pass.so.cc | |
parent | b6c4f3775a229a5c760052cad1580358f5c44f56 (diff) | |
download | afl++-29c98706584f6089f30cfd8540571d4ead92b416.tar.gz |
disable xml/curl/g_ string transform compare
Diffstat (limited to 'instrumentation/compare-transform-pass.so.cc')
-rw-r--r-- | instrumentation/compare-transform-pass.so.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/instrumentation/compare-transform-pass.so.cc b/instrumentation/compare-transform-pass.so.cc index ebab9cbb..496d69fc 100644 --- a/instrumentation/compare-transform-pass.so.cc +++ b/instrumentation/compare-transform-pass.so.cc @@ -468,6 +468,7 @@ bool CompareTransform::transformCmps(Module &M, const bool processStrcmp, bool nullCheck = false; Function *Callee = callInst->getCalledFunction(); + /* fprintf(stderr, "%s - %s - %s\n", callInst->getParent() ->getParent() @@ -476,7 +477,7 @@ bool CompareTransform::transformCmps(Module &M, const bool processStrcmp, .str() .c_str(), callInst->getParent()->getParent()->getName().str().c_str(), - Callee ? Callee->getName().str().c_str() : "NULL"); + Callee ? Callee->getName().str().c_str() : "NULL");*/ if (Callee) { |