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.
DataFlow2
1 parent c65d407 commit 8ed5bfbCopy full SHA for 8ed5bfb
java/ql/lib/semmle/code/java/security/StaticInitializationVectorQuery.qll
@@ -99,7 +99,7 @@ private module ArrayUpdateFlow = DataFlow::Global<ArrayUpdateConfig>;
99
private class StaticInitializationVectorSource extends DataFlow::Node {
100
StaticInitializationVectorSource() {
101
exists(StaticByteArrayCreation array | array = this.asExpr() |
102
- not ArrayUpdateFlow::flow(DataFlow2::exprNode(array), _) and
+ not ArrayUpdateFlow::flow(DataFlow::exprNode(array), _) and
103
// Reduce FPs from utility methods that return an empty array in an exceptional case
104
not exists(ReturnStmt ret |
105
array.getADimension().(CompileTimeConstantExpr).getIntValue() = 0 and
0 commit comments