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.
1 parent 1199240 commit d218813Copy full SHA for d218813
java/ql/src/experimental/semmle/code/java/security/StaticInitializationVectorQuery.qll
@@ -28,7 +28,12 @@ private class StaticByteArrayCreation extends ArrayCreationExpr {
28
}
29
30
31
-/** Defines a sub-set of expressions that update an array. */
+/**
32
+ * Defines a sub-set of expressions that update either content of an array or an array reference.
33
+ * There sub-set covers only methods that are likely to set a non-static IV.
34
+ * For example, `java.util.Arrays.fill()` is not covered because it assigns the same value
35
+ * to each element of the array.
36
+ */
37
private class ArrayUpdate extends Expr {
38
Expr array;
39
0 commit comments