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

Order xfree entries in alphabetical order for easy check that all

elements are freed.
parent fe091ae6
No related branches found
No related tags found
No related merge requests found
...@@ -299,9 +299,9 @@ void ...@@ -299,9 +299,9 @@ void
free_slurm_conf (slurm_ctl_conf_t *ctl_conf_ptr) free_slurm_conf (slurm_ctl_conf_t *ctl_conf_ptr)
{ {
xfree (ctl_conf_ptr->authtype); xfree (ctl_conf_ptr->authtype);
xfree (ctl_conf_ptr->checkpoint_type);
xfree (ctl_conf_ptr->backup_addr); xfree (ctl_conf_ptr->backup_addr);
xfree (ctl_conf_ptr->backup_controller); xfree (ctl_conf_ptr->backup_controller);
xfree (ctl_conf_ptr->checkpoint_type);
xfree (ctl_conf_ptr->control_addr); xfree (ctl_conf_ptr->control_addr);
xfree (ctl_conf_ptr->control_machine); xfree (ctl_conf_ptr->control_machine);
xfree (ctl_conf_ptr->epilog); xfree (ctl_conf_ptr->epilog);
......
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