Skip to content
Snippets Groups Projects
Commit 6c892ad5 authored by Moe Jette's avatar Moe Jette
Browse files

Fix memory leaks associated with job requeue.

parent 8df6ee2c
No related branches found
No related tags found
No related merge requests found
...@@ -1075,6 +1075,12 @@ extern int select_nodes(struct job_record *job_ptr, bool test_only, ...@@ -1075,6 +1075,12 @@ extern int select_nodes(struct job_record *job_ptr, bool test_only,
goto cleanup; goto cleanup;
} }
/* This job may be getting requeued, clear vestigial
* state information before over-writting and leaking
* memory. */
FREE_NULL_BITMAP(job_ptr->node_bitmap);
xfree(job_ptr->nodes);
job_ptr->node_bitmap = select_bitmap; job_ptr->node_bitmap = select_bitmap;
if (select_g_job_begin(job_ptr) != SLURM_SUCCESS) { if (select_g_job_begin(job_ptr) != SLURM_SUCCESS) {
/* Leave job queued, something is hosed */ /* Leave job queued, something is hosed */
......
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