From bd1d97438ec057d91ab52f349d0276fd2ab71be0 Mon Sep 17 00:00:00 2001 From: Moe Jette <jette1@llnl.gov> Date: Wed, 9 Mar 2005 11:39:08 +0000 Subject: [PATCH] Free allocated switch node info, fixes memory leak. --- src/slurmd/req.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/slurmd/req.c b/src/slurmd/req.c index ae5c71f30d6..4a1f100915a 100644 --- a/src/slurmd/req.c +++ b/src/slurmd/req.c @@ -1009,6 +1009,7 @@ _job_still_running(uint32_t job_id) static int _epilog_complete(uint32_t jobid, int rc) { + int ret = SLURM_SUCCESS; slurm_msg_t msg; epilog_complete_msg_t req; @@ -1025,11 +1026,12 @@ _epilog_complete(uint32_t jobid, int rc) if (slurm_send_only_controller_msg(&msg) < 0) { error("Unable to send epilog complete message: %m"); - return SLURM_ERROR; - } - debug ("Job %u: sent epilog complete msg: rc = %d", jobid, rc); + ret = SLURM_ERROR; + } else + debug ("Job %u: sent epilog complete msg: rc = %d", jobid, rc); - return SLURM_SUCCESS; + switch_g_free_node_info(&req.switch_nodeinfo); + return ret; } static void -- GitLab