Skip to content
Snippets Groups Projects
Commit c5d63854 authored by Danny Auble's avatar Danny Auble
Browse files

memory leak fix

parent 1a55b75d
No related branches found
No related tags found
No related merge requests found
...@@ -1682,7 +1682,7 @@ static void _slurm_rpc_job_step_create(slurm_msg_t * msg) ...@@ -1682,7 +1682,7 @@ static void _slurm_rpc_job_step_create(slurm_msg_t * msg)
#ifdef HAVE_FRONT_END #ifdef HAVE_FRONT_END
if (step_rec->job_ptr->batch_host) { if (step_rec->job_ptr->batch_host) {
job_step_resp.step_layout->front_end = job_step_resp.step_layout->front_end =
xstrdup(step_rec->job_ptr->batch_host); step_rec->job_ptr->batch_host;
} }
#endif #endif
job_step_resp.cred = slurm_cred; job_step_resp.cred = slurm_cred;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment