diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2023-11-03 08:05:46 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2023-11-03 08:05:46 +0200 |
commit | 066980729c57e00abc3765053cf3f39e3d223a54 (patch) | |
tree | 0497ed9b08837dfc1f301851b5f2e2dcf248caad /libbuild2/algorithm.ixx | |
parent | 1c6096e53a906d7821a401d91b32ca02df3d715f (diff) |
Fix data race in match options logic
Diffstat (limited to 'libbuild2/algorithm.ixx')
-rw-r--r-- | libbuild2/algorithm.ixx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libbuild2/algorithm.ixx b/libbuild2/algorithm.ixx index bae9151..e384433 100644 --- a/libbuild2/algorithm.ixx +++ b/libbuild2/algorithm.ixx @@ -622,6 +622,7 @@ namespace build2 me.reinit (false /* fallback */); me.cur_options = options; // Already applied, so cur_, not new_options. + me.cur_options_.store (me.cur_options, memory_order_relaxed); clear_target (l.action, *l.target); set_rule (l, nullptr); // No rule. set_recipe (l, move (r)); |