From 4a50a63ef54f2577d49364554bdef3288fc21990 Mon Sep 17 00:00:00 2001 From: "Robert (Bobby) Evans" Date: Tue, 8 Feb 2022 09:20:04 -0600 Subject: [PATCH] Fix small leak in explode (#10245) This fixes #10244 you can look at that for the analysis of the bug. Authors: - Robert (Bobby) Evans (https://github.com/revans2) Approvers: - David Wendt (https://github.com/davidwendt) - Ram (Ramakrishna Prabhu) (https://github.com/rgsl888prabhu) URL: https://github.com/rapidsai/cudf/pull/10245 --- cpp/src/lists/explode.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/lists/explode.cu b/cpp/src/lists/explode.cu index 3450c663210..f1d5f8e61ac 100644 --- a/cpp/src/lists/explode.cu +++ b/cpp/src/lists/explode.cu @@ -65,7 +65,7 @@ std::unique_ptr build_table( stream, mr); - std::vector> columns = gathered_table.release()->release(); + std::vector> columns = gathered_table->release(); columns.insert(columns.begin() + explode_column_idx, explode_col_gather_map