Home | History | Annotate | Download | only in Analysis

Lines Matching full:destination

293     strcpy(x, y); // expected-warning{{String copy function overflows destination buffer}}
332 stpcpy(x, y); // expected-warning{{String copy function overflows destination buffer}}
387 strcat(x, y); // expected-warning{{String copy function overflows destination buffer}}
393 strcat(x, y); // expected-warning{{String copy function overflows destination buffer}}
399 strcat(x, y); // expected-warning{{String copy function overflows destination buffer}}
479 strncpy(x, y, 5); // expected-warning{{Size argument is greater than the length of the destination buffer}}
485 strncpy(x, y, 5); // expected-warning{{Size argument is greater than the length of the destination buffer}}
494 strncpy(x, y, n); // expected-warning{{Size argument is greater than the length of the destination buffer}}
575 strncat(x, y, strlen(y)); // expected-warning{{Size argument is greater than the free space in the destination buffer}}
581 strncat(x, y, strlen(y)); // expected-warning{{Size argument is greater than the free space in the destination buffer}}
587 strncat(x, y, strlen(y)); // expected-warning{{Size argument is greater than the free space in the destination buffer}}
593 strncat(x, y, 2); // expected-warning{{Size argument is greater than the free space in the destination buffer}}
618 strncat(dst2, src, 4); // expected-warning{{Size argument is greater than the free space in the destination buffer}}
627 strncat(dst2, &src[offset], 4); // expected-warning{{Size argument is greater than the free space in the destination buffer}}