diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/memalloc.c | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog index 2093fc7..18ed330 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,10 @@ * Optimize dash -c "command" to avoid a fork. * Eliminate unnecessary promotion in echocmd. +2011-05-23 Jim Meyering <meyering@redhat.com> + + * Avoid gcc warning: variable 'oldstackp' set but not used. + 2011-05-22 Jonathan Nieder <jrnieder@gmail.com> * Make outc an inline function. diff --git a/src/memalloc.c b/src/memalloc.c index e75e609..9fea067 100644 --- a/src/memalloc.c +++ b/src/memalloc.c @@ -206,20 +206,18 @@ growstackblock(void) { size_t newlen; - newlen = stacknleft * 2; + newlen = stacknleft * 2; if (newlen < stacknleft) sh_error("Out of space"); if (newlen < 128) newlen += 128; if (stacknxt == stackp->space && stackp != &stackbase) { - struct stack_block *oldstackp; struct stack_block *sp; struct stack_block *prevstackp; size_t grosslen; INTOFF; - oldstackp = stackp; sp = stackp; prevstackp = sp->prev; grosslen = newlen + sizeof(struct stack_block) - MINSIZE; |