diff options
| author | bors <bors@rust-lang.org> | 2013-06-28 12:05:12 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-06-28 12:05:12 -0700 |
| commit | f44b951a1ea40b61508b2d0abb3f239797f885c5 (patch) | |
| tree | 326ffc88eb48938b5c57daad927cf6e7462a13e1 /src/libstd/task/spawn.rs | |
| parent | 4e4e2f70c90f01b5be22a192c883b9dcb34df7ff (diff) | |
| parent | 4f044891a5457acb06338c78f9aa58d8b4c9d53f (diff) | |
| download | rust-f44b951a1ea40b61508b2d0abb3f239797f885c5.tar.gz rust-f44b951a1ea40b61508b2d0abb3f239797f885c5.zip | |
auto merge of #7451 : cmr/rust/rewrite-each-path, r=pcwalton
Diffstat (limited to 'src/libstd/task/spawn.rs')
| -rw-r--r-- | src/libstd/task/spawn.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/task/spawn.rs b/src/libstd/task/spawn.rs index 95fc53c1b55..8f06fede057 100644 --- a/src/libstd/task/spawn.rs +++ b/src/libstd/task/spawn.rs @@ -636,7 +636,8 @@ fn spawn_raw_oldsched(mut opts: TaskOpts, f: ~fn()) { let child_data = Cell::new((notify_chan, child_arc, ancestors)); let result: ~fn() = || { // Agh. Get move-mode items into the closure. FIXME (#2829) - let mut (notify_chan, child_arc, ancestors) = child_data.take(); + let (notify_chan, child_arc, ancestors) = child_data.take(); + let mut ancestors = ancestors; // Child task runs this code. // Even if the below code fails to kick the child off, we must |
