mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-11 15:29:18 +00:00
QoL and bug fixes
This commit is contained in:
@ -386,7 +386,8 @@ bool UBSANMsg(const char *file, uint32_t line, uint32_t column)
|
||||
{
|
||||
/* This can be ignored (unaligned memory access) */
|
||||
if (strstr(file, "AdvancedConfigurationAndPowerInterface.cpp") &&
|
||||
(line == 34 && column == 47))
|
||||
((line == 34 && column == 47) ||
|
||||
(line == 36 && column == 47)))
|
||||
return false;
|
||||
|
||||
/* This can be ignored (unaligned memory access) */
|
||||
@ -401,6 +402,9 @@ bool UBSANMsg(const char *file, uint32_t line, uint32_t column)
|
||||
(line == 63 && column == 30))
|
||||
return false;
|
||||
|
||||
if (strstr(file, "liballoc_1_1.c"))
|
||||
return false;
|
||||
|
||||
/* This can be ignored (store address x with insufficient space for object of type 'y') */
|
||||
if (strstr(file, "Task.cpp") && line > 500)
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user