Commit 562f7eab authored by Kenton Varda's avatar Kenton Varda

oops

parent 834319ec
......@@ -48,7 +48,7 @@ Thread::~Thread() noexcept(false) {
KJ_IF_MAYBE(e, state->exception) {
Exception ecopy = kj::mv(*e);
state->exception = nullptr; // don't complain of uncaught exception when deleting
kj::throwRecoverableException(kj::mv(*e));
kj::throwRecoverableException(kj::mv(ecopy));
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment