diff options
author | Ricardo M. Correia <rcorreia@wizy.org> | 2020-11-10 04:24:55 +0100 |
---|---|---|
committer | Ricardo M. Correia <rcorreia@wizy.org> | 2020-11-10 04:25:24 +0100 |
commit | 108a2dab7e460533064b24f5dff05adc453acb27 (patch) | |
tree | fac6b884b3b0152c333b94931bee727d1995ecca | |
parent | b87f84cf55b4ca666b31c511e2489789e3322da4 (diff) |
Fix stack overflow introduced in #4206
-rw-r--r-- | src/libutil/serialise.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/serialise.cc b/src/libutil/serialise.cc index 28f6968d0..038ede049 100644 --- a/src/libutil/serialise.cc +++ b/src/libutil/serialise.cc @@ -195,7 +195,7 @@ class DefaultStackAllocator : public StackAllocator { } void deallocate(boost::context::stack_context sctx) { - deallocate(sctx); + stack.deallocate(sctx); } }; |