Merge pull request #4242 from wizeman/fix-stack-overflow

Fix stack overflow introduced in #4206
This commit is contained in:
Eelco Dolstra 2020-11-10 11:51:00 +01:00 committed by GitHub
commit cdc840d60b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -195,7 +195,7 @@ class DefaultStackAllocator : public StackAllocator {
}
void deallocate(boost::context::stack_context sctx) {
deallocate(sctx);
stack.deallocate(sctx);
}
};