Skip to content

Commit 98503b6

Browse files
committed
debug
1 parent 7766b70 commit 98503b6

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

java/ql/lib/semmle/code/java/security/TaintedPathQuery.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ module TaintedPathConfig implements DataFlow::ConfigSig {
6666

6767
predicate isBarrier(DataFlow::Node sanitizer) {
6868
sanitizer instanceof SimpleTypeSanitizer or
69-
sanitizer instanceof PathInjectionSanitizer //or
70-
// sanitizer.getLocation().getFile().getBaseName() =
71-
// ["BaseObject.java", "SimpleNode.java", "Context.java"]
69+
sanitizer instanceof PathInjectionSanitizer or
70+
sanitizer.getLocation().getFile().getBaseName() =
71+
[/*"BaseObject.java", "SimpleNode.java",*/ "Context.java"]
7272
}
7373

7474
predicate isAdditionalFlowStep(DataFlow::Node n1, DataFlow::Node n2) {

shared/dataflow/codeql/dataflow/internal/DataFlowImpl.qll

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3259,7 +3259,8 @@ module MakeImpl<InputSig Lang> {
32593259
private module Stage3 = MkStage<Stage2_5>::Stage<Stage3Param>;
32603260

32613261
// private predicate mostBusyNodeFwd3 = Stage3::mostBusyNodeFwd/10;
3262-
// private predicate mostBusyNodeFwd3_5 = Stage3_5::mostBusyNodeFwd/10;
3262+
private predicate mostBusyNodeFwd3_5 = Stage3_5::mostBusyNodeFwd/10;
3263+
32633264
// private predicate mostBusyNodeFwd4 = Stage4::mostBusyNodeFwd/10;
32643265
private predicate mostBusyNodeFwd5 = Stage5::mostBusyNodeFwd/10;
32653266

0 commit comments

Comments
 (0)