about summary refs log tree commit diff
path: root/instrumentation/afl-llvm-common.cc
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2021-02-07 07:51:29 +0100
committervanhauser-thc <vh@thc.org>2021-02-07 07:51:29 +0100
commit0ad56167c53ae660d40ccc6cdedb39f0a52eefcd (patch)
treedf45cbcd663a12cc96670cf8e72ba72f90fa37ef /instrumentation/afl-llvm-common.cc
parentaeb7d7048371cd91ab9280c3958f1c35e5d5e758 (diff)
downloadafl++-0ad56167c53ae660d40ccc6cdedb39f0a52eefcd.tar.gz
fix scan-build issues
Diffstat (limited to 'instrumentation/afl-llvm-common.cc')
-rw-r--r--instrumentation/afl-llvm-common.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/instrumentation/afl-llvm-common.cc b/instrumentation/afl-llvm-common.cc
index a27c4069..aa54f4f7 100644
--- a/instrumentation/afl-llvm-common.cc
+++ b/instrumentation/afl-llvm-common.cc
@@ -351,7 +351,7 @@ static std::string getSourceName(llvm::Function *F) {
 
     if (cDILoc) { instFilename = cDILoc->getFilename(); }
 
-    if (instFilename.str().empty()) {
+    if (instFilename.str().empty() && cDILoc) {
 
       /* If the original location is empty, try using the inlined location
        */