Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable static array-bounds check so suppress false positives
Newer versions of GCC warn about memory accesses at non-zero offsets from null pointers. As we use this intentionally at different places in our code, these warnings result in many false positives. Temporarily, disabling the flag using pragmas is not viable as it is caused by macros that provide an expression. So we could not just fix the macro, but wherever it is used. Tracked by: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99578 Signed-off-by: Jean-Claude Graf <[email protected]>
- Loading branch information