Skip to content

Commit 16a7e39

Browse files
committed
C++: Fix pointer indirection. Currently, this does not have any effect because of a conflation bug in taint-tracking.
1 parent dc8dc61 commit 16a7e39

File tree

1 file changed

+1
-1
lines changed
  • cpp/ql/lib/semmle/code/cpp/models/implementations

1 file changed

+1
-1
lines changed

cpp/ql/lib/semmle/code/cpp/models/implementations/Http.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ private class HttpRequestHeadersInheritingContent extends TaintInheritingContent
5454
this.getIndirectionIndex() = 1
5555
or
5656
this.getAField().hasName("pUnknownHeaders") and
57-
this.getIndirectionIndex() = 1
57+
this.getIndirectionIndex() = 2
5858
)
5959
}
6060
}

0 commit comments

Comments
 (0)