Python: Fix mistake in refactor

This commit is contained in:
Rasmus Wriedt Larsen
2021-03-24 13:51:29 +01:00
parent deefbefffc
commit 59200386a7

View File

@@ -102,7 +102,7 @@ private module CryptographyModel {
/** Gets a reference to a predefined curve class instance with a specific key size (in bits), as well as the origin of the class. */
DataFlow::Node curveClassInstanceWithKeySize(int keySize, DataFlow::Node origin) {
result = curveClassInstanceWithKeySize(DataFlow::TypeTracker::end(), keySize, origin)
curveClassInstanceWithKeySize(DataFlow::TypeTracker::end(), keySize, origin).flowsTo(result)
}
}