We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8316424 + 85b8d7b commit 79d9fbeCopy full SHA for 79d9fbe
src/goto-analyzer/taint_analysis.cpp
@@ -134,8 +134,8 @@ void taint_analysist::instrument(
134
{
135
bool match=false;
136
for(const auto & i : identifiers)
137
- if(has_prefix(id2string(i), "java::"+id2string(rule.function_identifier)+":") ||
138
- id2string(i)==id2string(rule.function_identifier))
+ if(i==rule.function_identifier ||
+ has_prefix(id2string(i), "java::"+id2string(rule.function_identifier)+":"))
139
140
match=true;
141
break;
0 commit comments