blob: e8a5439ec404f190becd230ca19c46e8dbb3769d [file] [log] [blame]
// RUN: test.sh -e -t %t %s
#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;
}