Skip to content
Snippets Groups Projects
Unverified Commit 0681f8c9 authored by Eelco Dolstra's avatar Eelco Dolstra
Browse files

Shut up a memory leak warning

parent 2965d406
No related branches found
No related tags found
No related merge requests found
...@@ -52,7 +52,8 @@ void detectStackOverflow() ...@@ -52,7 +52,8 @@ void detectStackOverflow()
delivered when we're out of stack space. */ delivered when we're out of stack space. */
stack_t stack; stack_t stack;
stack.ss_size = 4096 * 4 + MINSIGSTKSZ; stack.ss_size = 4096 * 4 + MINSIGSTKSZ;
stack.ss_sp = new char[stack.ss_size]; static auto stackBuf = std::make_unique<std::vector<char>>(stack.ss_size);
stack.ss_sp = stackBuf->data();
if (!stack.ss_sp) throw Error("cannot allocate alternative stack"); if (!stack.ss_sp) throw Error("cannot allocate alternative stack");
stack.ss_flags = 0; stack.ss_flags = 0;
if (sigaltstack(&stack, 0) == -1) throw SysError("cannot set alternative stack"); if (sigaltstack(&stack, 0) == -1) throw SysError("cannot set alternative stack");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment