We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 947e027 commit 30a512cCopy full SHA for 30a512c
cpp/ql/lib/semmle/code/cpp/models/implementations/ODBC.qll
@@ -17,9 +17,7 @@ private import semmle.code.cpp.models.interfaces.FunctionInputsAndOutputs
17
* and would be considered a barrier to SQL injection.
18
*/
19
private class ODBCExecutionFunction extends SqlExecutionFunction {
20
- ODBCExecutionFunction() {
21
- this.hasGlobalName(["SQLExecDirect", "SQLPrepare"])
22
- }
+ ODBCExecutionFunction() { this.hasGlobalName(["SQLExecDirect", "SQLPrepare"]) }
23
24
override predicate hasSqlArgument(FunctionInput input) { input.isParameterDeref(1) }
25
}
0 commit comments