//#Unsafe /* * Check that read after allocated range is detected. * Date: 2016-02-24 * Author: heizmann@informatik.uni-freiburg.de * */ #include #include int main() { int *p = calloc(3, sizeof(int)); int trd = *(p+3); return 0; }