diff options
Diffstat (limited to '')
| -rw-r--r-- | include/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/string.h b/include/string.h index 7987d17..23f598c 100644 --- a/include/string.h +++ b/include/string.h | |||
| @@ -104,7 +104,7 @@ _FORTIFY_FN(stpncpy) char *stpncpy(char * _FORTIFY_POS0 __d, const char *__s, | |||
| 104 | { | 104 | { |
| 105 | size_t __b = __bos(__d, 0); | 105 | size_t __b = __bos(__d, 0); |
| 106 | 106 | ||
| 107 | if (__n > __b && strlen(__s) + 1 > __b) | 107 | if (__n > __b) |
| 108 | __builtin_trap(); | 108 | __builtin_trap(); |
| 109 | return __orig_stpncpy(__d, __s, __n); | 109 | return __orig_stpncpy(__d, __s, __n); |
| 110 | } | 110 | } |
