You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Exclude false positives where a variable occurs in a file compiled multiple times, but where it may only be const in some of those scenarios.
3
+
- Exclude results for local scope variables in functions that use assembly code, as CodeQL cannot determine the impact of the assembly.
4
+
- Exclude false positives when an assignment is made to a struct field.
5
+
- Exclude false positives where the object pointed to by the variable is modified using `*p++ = ...`.
6
+
- Exclude false positives for functions without bodies.
7
+
- Rules that rely on the determination of side-effects of an expression may change as a result of considering `*p++ = ...` as having a side-effect on `p`.
0 commit comments