From a5b3d0fe7311c1c9e165fb9ccb29f57b946897cd Mon Sep 17 00:00:00 2001
From: Danny Auble <da@schedmd.com>
Date: Tue, 18 Jun 2013 14:45:16 -0700
Subject: [PATCH] jobacct - fix memory leak when using procktrack to get
 processes

---
 src/plugins/jobacct_gather/linux/jobacct_gather_linux.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/plugins/jobacct_gather/linux/jobacct_gather_linux.c b/src/plugins/jobacct_gather/linux/jobacct_gather_linux.c
index ed466c1f556..2015a0d3f53 100644
--- a/src/plugins/jobacct_gather/linux/jobacct_gather_linux.c
+++ b/src/plugins/jobacct_gather/linux/jobacct_gather_linux.c
@@ -571,6 +571,7 @@ extern void jobacct_gather_p_poll_data(
 			snprintf(proc_io_file, 256, "/proc/%d/io", pids[i]);
 			_handle_stats(prec_list, proc_stat_file, proc_io_file);
 		}
+		xfree(pids);
 	} else {
 		slurm_mutex_lock(&reading_mutex);
 
-- 
GitLab