mirror of
https://github.com/sheumann/hush.git
synced 2025-01-25 07:33:47 +00:00
ash: remove dead stores and unused variables
Upstream commit 1: Date: Fri, 8 Jul 2011 16:12:20 +0800 [MEMALLOC] Avoid gcc warning: variable 'oldstackp' set but not used * src/memalloc.c (growstackblock): Remove declaration and set of set-but-not-used variable. Also remove a stray space-before-TAB. Signed-off-by: Jim Meyering <meyering@redhat.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Upstream commit 2: Date: Fri, 8 Jul 2011 16:16:11 +0800 [MEMALLOC] Avoid clang warning about dead store to "size" * src/memalloc.c (makestrspace): Remove dead store. Signed-off-by: Jim Meyering <meyering@redhat.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
60ca834358
commit
53d6e03a0a
@ -1538,13 +1538,11 @@ growstackblock(void)
|
|||||||
newlen += 128;
|
newlen += 128;
|
||||||
|
|
||||||
if (g_stacknxt == g_stackp->space && g_stackp != &stackbase) {
|
if (g_stacknxt == g_stackp->space && g_stackp != &stackbase) {
|
||||||
struct stack_block *oldstackp;
|
|
||||||
struct stack_block *sp;
|
struct stack_block *sp;
|
||||||
struct stack_block *prevstackp;
|
struct stack_block *prevstackp;
|
||||||
size_t grosslen;
|
size_t grosslen;
|
||||||
|
|
||||||
INT_OFF;
|
INT_OFF;
|
||||||
oldstackp = g_stackp;
|
|
||||||
sp = g_stackp;
|
sp = g_stackp;
|
||||||
prevstackp = sp->prev;
|
prevstackp = sp->prev;
|
||||||
grosslen = newlen + sizeof(struct stack_block) - MINSIZE;
|
grosslen = newlen + sizeof(struct stack_block) - MINSIZE;
|
||||||
@ -1602,7 +1600,7 @@ static char *
|
|||||||
makestrspace(size_t newlen, char *p)
|
makestrspace(size_t newlen, char *p)
|
||||||
{
|
{
|
||||||
size_t len = p - g_stacknxt;
|
size_t len = p - g_stacknxt;
|
||||||
size_t size = stackblocksize();
|
size_t size;
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
size_t nleft;
|
size_t nleft;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user