mirror of
https://github.com/github/codeql.git
synced 2026-06-24 22:27:03 +02:00
8 lines
271 B
Plaintext
8 lines
271 B
Plaintext
import semmle.code.cpp.models.interfaces.Throwing
|
|
|
|
class WindowsDriverExceptionAnnotation extends AlwaysSehThrowingFunction {
|
|
WindowsDriverExceptionAnnotation() {
|
|
this.hasGlobalName(["RaiseException", "ExRaiseAccessViolation", "ExRaiseDatatypeMisalignment"])
|
|
}
|
|
}
|