Skip to content

Commit 5920038

Browse files
committed
Python: Fix mistake in refactor
1 parent deefbef commit 5920038

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/ql/src/semmle/python/frameworks/Cryptography.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ private module CryptographyModel {
102102

103103
/** Gets a reference to a predefined curve class instance with a specific key size (in bits), as well as the origin of the class. */
104104
DataFlow::Node curveClassInstanceWithKeySize(int keySize, DataFlow::Node origin) {
105-
result = curveClassInstanceWithKeySize(DataFlow::TypeTracker::end(), keySize, origin)
105+
curveClassInstanceWithKeySize(DataFlow::TypeTracker::end(), keySize, origin).flowsTo(result)
106106
}
107107
}
108108

0 commit comments

Comments
 (0)