mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-09 17:49:40 +00:00
Kenrel: Implement two more KUBSAN checks
This patch adds the following UndefinedBehaviorSanitizer sub-options: * signed-integer-overflow * vla-bound
This commit is contained in:
parent
8e7ad28a33
commit
d164f89ada
Notes:
sideshowbarker
2024-07-18 22:34:40 +09:00
Author: https://github.com/awesomekling
Commit: d164f89ada
3 changed files with 51 additions and 7 deletions
|
@ -74,4 +74,14 @@ struct NonnullArgData {
|
|||
int argument_index;
|
||||
};
|
||||
|
||||
struct OverflowData {
|
||||
SourceLocation location;
|
||||
const TypeDescriptor& type;
|
||||
};
|
||||
|
||||
struct VLABoundData {
|
||||
SourceLocation location;
|
||||
const TypeDescriptor& type;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue