瀏覽代碼

Fix memory leak

Samuel Thibault 13 年之前
父節點
當前提交
1c446ee4eb
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/datawizard/filters.c

+ 2 - 1
src/datawizard/filters.c

@@ -338,7 +338,8 @@ void starpu_data_unpartition(starpu_data_handle_t root_handle, uint32_t gatherin
 	}
 
 	/* there is no child anymore */
-	//free(root_handle->children);
+	free(root_handle->children);
+	root_handle->children = NULL;
 	root_handle->nchildren = 0;
 
 	/* now the parent may be used again so we release the lock */