diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-12-05 09:58:58 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-12-05 09:58:58 +0530 |
commit | 232983e9a74e817377a5e76f2c3872c8a92685d0 (patch) | |
tree | 6eebf2f1cf5e8f7a4d5aa72beb6e5924ba39e3db /debug/stpncpy_chk.c | |
parent | 54285cf9e5bbd10826beba4cc1feb039395867b0 (diff) | |
download | glibc-232983e9a74e817377a5e76f2c3872c8a92685d0.zip glibc-232983e9a74e817377a5e76f2c3872c8a92685d0.tar.gz glibc-232983e9a74e817377a5e76f2c3872c8a92685d0.tar.bz2 |
Remove unused variables in __stpncpy_chk
Diffstat (limited to 'debug/stpncpy_chk.c')
-rw-r--r-- | debug/stpncpy_chk.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/debug/stpncpy_chk.c b/debug/stpncpy_chk.c index f9fa66c..0bc6ae2 100644 --- a/debug/stpncpy_chk.c +++ b/debug/stpncpy_chk.c @@ -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 (); |