Merge "Fix unnecessary call to __strncpy_chk2"

This commit is contained in:
Nick Kralevich 2013-09-27 22:13:19 +00:00 committed by Gerrit Code Review
commit 6aed6077fb

View file

@ -135,6 +135,10 @@ char* strncpy(char* __restrict dest, const char* __restrict src, size_t n) {
return __builtin___strncpy_chk(dest, src, n, bos_dest);
}
if (__builtin_constant_p(n) && (n <= bos_src)) {
return __builtin___strncpy_chk(dest, src, n, bos_dest);
}
size_t slen = __builtin_strlen(src);
if (__builtin_constant_p(slen)) {
return __builtin___strncpy_chk(dest, src, n, bos_dest);