Skip to content

Commit

Permalink
Fix race conditioned segfault in hermes_data_op
Browse files Browse the repository at this point in the history
  • Loading branch information
lukemartinlogan committed Oct 19, 2023
1 parent 7dfe1b2 commit 6440710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/hermes_data_op/src/hermes_data_op.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ class Server : public TaskLib {
client_.Init(id_);
op_id_map_["min"] = 0;
op_id_map_["max"] = 1;
run_task_ = client_.AsyncRunOp(task->task_node_ + 1);
op_graphs_.resize(HRUN_QM_RUNTIME->max_lanes_);
run_task_ = client_.AsyncRunOp(task->task_node_ + 1);
task->SetModuleComplete();
}

Expand Down

0 comments on commit 6440710

Please sign in to comment.