Skip to content

Commit 83dc5b9

Browse files
committed
Fixing type bug
1 parent 9ee4a7a commit 83dc5b9

File tree

1 file changed

+1
-1
lines changed
  • shared/cryptography/codeql/cryptography

1 file changed

+1
-1
lines changed

shared/cryptography/codeql/cryptography/Model.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@ module CryptographyBase<LocationSig Location, InputSig<Location> Input> {
706706
result = instance.getCipherOperationMode()
707707
}
708708

709-
final override EncryptionAlgorithm getAlgorithm() { result = instance.getAlgorithm() }
709+
final override EncryptionAlgorithm getAlgorithm() { result.getInstance() = instance.getAlgorithm() }
710710

711711
override string getInternalType() { result = "CipherOperation" }
712712
// /**

0 commit comments

Comments
 (0)