blob: db0b5f238a691de0a0e927d48222d6cbf546f37a [file] [log] [blame]
/* strcat() with invalid source */
#include <string.h>
int main()
{
char *ptr;
char buf[10];
buf[0] = '\0';
strcat(buf, ptr);
return 0;
}