浏览代码

Fix memory leak in bounds

Samuel Thibault 5 年之前
父节点
当前提交
d7e4759b10
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/profiling/bound.c

+ 1 - 0
src/profiling/bound.c

@@ -168,6 +168,7 @@ static void _starpu_bound_clear(int record, int deps, int prio)
 					free(t->duration[i][j]);
 				free(t->duration[i]);
 			}
+			free(t->deps);
 		}
 		free(t);
 		t = next;