Skip to content

Commit 4751b97

Browse files
committed
HACK: raise field flow limit
1 parent 9a37486 commit 4751b97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shared/dataflow/codeql/dataflow/DataFlow.qll

+2-2
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ module Configs<LocationSig Location, InputSig<Location> Lang> {
399399
* This can be overridden to a smaller value to improve performance (a
400400
* value of 0 disables field flow), or a larger value to get more results.
401401
*/
402-
default int fieldFlowBranchLimit() { result = 2 }
402+
default int fieldFlowBranchLimit() { result = 3 }
403403

404404
/** Gets the access path limit. */
405405
default int accessPathLimit() { result = Lang::accessPathLimit() }
@@ -548,7 +548,7 @@ module Configs<LocationSig Location, InputSig<Location> Lang> {
548548
* This can be overridden to a smaller value to improve performance (a
549549
* value of 0 disables field flow), or a larger value to get more results.
550550
*/
551-
default int fieldFlowBranchLimit() { result = 2 }
551+
default int fieldFlowBranchLimit() { result = 3 }
552552

553553
/** Gets the access path limit. */
554554
default int accessPathLimit() { result = Lang::accessPathLimit() }

0 commit comments

Comments
 (0)