From: Ondřej Bílka Date: Tue, 11 Feb 2014 11:43:33 +0000 (+0100) Subject: Remove unused variable from stdlib/setenv.c X-Git-Tag: glibc-2.20~876 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=83a3406e0f1dd92cd6c7c2a668c5cec2fe1a0cc6;p=thirdparty%2Fglibc.git Remove unused variable from stdlib/setenv.c --- diff --git a/stdlib/setenv.c b/stdlib/setenv.c index e244e183313..8de5328b06f 100644 --- a/stdlib/setenv.c +++ b/stdlib/setenv.c @@ -135,7 +135,6 @@ __add_to_environ (name, value, combined, replace) if (ep == NULL || __builtin_expect (*ep == NULL, 1)) { - const size_t varlen = namelen + 1 + vallen; char **new_environ; /* We allocated this space; we can extend it. */