diff --git a/src/stack.h b/src/stack.h index 4374312..f7b083d 100644 --- a/src/stack.h +++ b/src/stack.h @@ -68,7 +68,6 @@ public: { // calc nb of needed pages unsigned long page_number = 1 + ((_current - _base) + size - _total_size) / ALLOC_STACK_CHUNK; - current_offset = _current - _base; _total_size += page_number * ALLOC_STACK_CHUNK; old_base = _base;