1
0
mirror of https://sourceware.org/git/glibc.git synced 2026-01-06 11:51:29 +03:00

Remove unused variables in __stpncpy_chk

This commit is contained in:
Siddhesh Poyarekar
2013-12-05 09:58:58 +05:30
parent 54285cf9e5
commit 232983e9a7
2 changed files with 2 additions and 3 deletions

View File

@@ -25,9 +25,6 @@
char *
__stpncpy_chk (char *dest, const char *src, size_t n, size_t destlen)
{
char c;
char *s = dest;
if (__builtin_expect (destlen < n, 0))
__chk_fail ();