Skip to content
Snippets Groups Projects
Commit c5d764c5 authored by Tim Wickberg's avatar Tim Wickberg
Browse files

mcs/account plugin - avoid unnecessary string copy.

parent f402647c
No related branches found
No related tags found
No related merge requests found
......@@ -96,14 +96,12 @@ extern int fini(void)
*/
extern int mcs_p_set_mcs_label(struct job_record *job_ptr, char *label)
{
char *account = NULL;
int rc = SLURM_SUCCESS;
account = xstrdup(job_ptr->account);
xfree(job_ptr->mcs_label);
if (label != NULL) {
/* test label param */
if (xstrcmp(label, account) == 0) {
job_ptr->mcs_label = xstrdup(account);
if (!xstrcmp(label, job_ptr->account)) {
job_ptr->mcs_label = xstrdup(job_ptr->account);
} else {
rc = SLURM_ERROR;
}
......@@ -112,10 +110,9 @@ extern int mcs_p_set_mcs_label(struct job_record *job_ptr, char *label)
(job_ptr->details->whole_node != WHOLE_NODE_MCS)) {
;
} else {
job_ptr->mcs_label = xstrdup(account);
job_ptr->mcs_label = xstrdup(job_ptr->account);
}
}
xfree(account);
return rc;
}
......
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