mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
14 lines
182 B
C
14 lines
182 B
C
#include <stdlib.h>
|
|
|
|
int main(void)
|
|
{
|
|
int y;
|
|
int* x = malloc(sizeof(int) * 100);
|
|
|
|
y = x[95]; // ok
|
|
y = x[100]; // overrun
|
|
y = x[-1]; // underrun
|
|
|
|
return 0;
|
|
}
|