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 d73b2ef commit 28ba78cCopy full SHA for 28ba78c
javascript/ql/lib/semmle/javascript/security/dataflow/TaintedPathCustomizations.qll
@@ -513,11 +513,11 @@ module TaintedPath {
513
514
override predicate blocks(boolean outcome, Expr e) {
515
member = "relative" and
516
- e = maybeGetPathSuffix(pathCall.getArgument(1)).asExpr() and
+ e = this.maybeGetPathSuffix(pathCall.getArgument(1)).asExpr() and
517
outcome = startsWith.getPolarity().booleanNot()
518
or
519
not member = "relative" and
520
- e = maybeGetPathSuffix(pathCall.getArgument(0)).asExpr() and
+ e = this.maybeGetPathSuffix(pathCall.getArgument(0)).asExpr() and
521
outcome = startsWith.getPolarity()
522
}
523
0 commit comments