// RUN: %clangxx_asan -O0 %s -o %t && %t // Regression test for PR17138. #include #include #include int main() { char buf[1024]; char *res = (char *)strerror_r(300, buf, sizeof(buf)); printf("%p\n", res); return 0; }