diff --git a/libfuse/lib/node.cpp b/libfuse/lib/node.cpp index d35ab614..6560f5b2 100644 --- a/libfuse/lib/node.cpp +++ b/libfuse/lib/node.cpp @@ -13,6 +13,10 @@ struct stack_t struct StackInfo { + StackInfo(stack_t *stack_, + bool *should_gc_) + : stack(stack_), + should_gc(should_gc_) stack_t *stack; bool *should_gc; };