Include changes from review

This commit is contained in:
Porcupiney Hairs
2024-10-21 20:01:44 +05:30
parent 7ef2d79b3f
commit f6369a6ed7

View File

@@ -92,9 +92,9 @@ module Pycurl {
) {
sslverifypeer().getAValueReachableFromSource() = this.getArg(0) and
(
exists(IntegerLiteral i | i.getValue() = 0 and this.getArg(1).asExpr() = i)
this.getArg(1).asExpr().(IntegerLiteral).getValue() = 0
or
exists(BooleanLiteral b | b.booleanValue() = false and this.getArg(_).asExpr() = b)
this.getArg(1).asExpr().(BooleanLiteral).booleanValue() = false
) and
(disablingNode = this and argumentOrigin = this.getArg(1))
}