Skip to content

Commit 88dc086

Browse files
committed
C++: Fix copy-paste error.
1 parent c7382ee commit 88dc086

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/ql/src/Security/CWE/CWE-327/BrokenCryptoAlgorithm.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Function getAdditionalEvidenceFunction() {
3232
(
3333
isEncryptionAdditionalEvidence(result.getName()) or
3434
isEncryptionAdditionalEvidence(result.getAParameter().getName()) or
35-
isInsecureEncryption(result.getDeclaringType().getName())
35+
isEncryptionAdditionalEvidence(result.getDeclaringType().getName())
3636
) and
3737
exists(result.getACallToThisFunction())
3838
}

0 commit comments

Comments
 (0)