函数源码 |
Source File:lib\test_kasan.c |
Create Date:2022-07-27 07:26:46 |
首页 | Copyright©Brick |
437 438 439 440 441 442 443 444 | static noinline void __init kasan_global_oob( void ) { volatile int i = 3; char *p = &global_array[ARRAY_SIZE(global_array) + i]; pr_info( "out-of-bounds global variable\n" ); *( volatile char *)p; } |