mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-13 01:36:15 +02:00
Fix stack overflow introduced in #4206
This commit is contained in:
parent
b87f84cf55
commit
108a2dab7e
1 changed files with 1 additions and 1 deletions
|
@ -195,7 +195,7 @@ class DefaultStackAllocator : public StackAllocator {
|
||||||
}
|
}
|
||||||
|
|
||||||
void deallocate(boost::context::stack_context sctx) {
|
void deallocate(boost::context::stack_context sctx) {
|
||||||
deallocate(sctx);
|
stack.deallocate(sctx);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue