Skip to content

Commit d04078f

Browse files
committed
C++: Fix.
1 parent 4aa41df commit d04078f

File tree

1 file changed

+1
-1
lines changed
  • cpp/ql/src/Security/CWE/CWE-611

1 file changed

+1
-1
lines changed

cpp/ql/src/Security/CWE/CWE-611/XXE.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ class ParseFunction extends Function {
169169
class CreateLSParser extends Function {
170170
CreateLSParser() {
171171
this.hasName("createLSParser") and
172-
this.getUnderlyingType().(PointerType).getBaseType().getName() = "DOMLSParser" // returns a `DOMLSParser *`.
172+
this.getUnspecifiedType().(PointerType).getBaseType().getName() = "DOMLSParser" // returns a `DOMLSParser *`.
173173
}
174174
}
175175

0 commit comments

Comments
 (0)