blob: 9aa8e3a3adedf01642e517be739971113d5e2d89 [file] [log] [blame]
// RUN: test.sh -e -t %t %s
// XFAIL: darwin
#include <string.h>
// strnlen() reads out of bounds.
int main()
{
char string[10];
memcpy(string, "Unterminated string", 10);
size_t result;
result = strnlen(string, 11);
return 0;
}