We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 301f900 commit 37c8558Copy full SHA for 37c8558
src/rt/rust_task.cpp
@@ -587,7 +587,7 @@ rust_task::cleanup_after_turn() {
587
// stack and false otherwise.
588
bool
589
rust_task::new_big_stack() {
590
- assert(stk);
+ assert(stk);
591
// If we have a cached big stack segment, use it.
592
if (big_stack) {
593
// Check to see if we're already on the big stack.
@@ -617,7 +617,7 @@ rust_task::new_big_stack() {
617
if (big_stack->next)
618
big_stack->next->prev = big_stack;
619
big_stack->prev = stk;
620
- stk->next = big_stack;
+ stk->next = big_stack;
621
622
stk = big_stack;
623
0 commit comments