Skip to content

Commit

Permalink
Fix small leak in explode (#10245)
Browse files Browse the repository at this point in the history
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: #10245
  • Loading branch information
revans2 authored Feb 8, 2022
1 parent 1bc3727 commit 4a50a63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/lists/explode.cu
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ std::unique_ptr<table> build_table(
stream,
mr);

std::vector<std::unique_ptr<column>> columns = gathered_table.release()->release();
std::vector<std::unique_ptr<column>> columns = gathered_table->release();

columns.insert(columns.begin() + explode_column_idx,
explode_col_gather_map
Expand Down

0 comments on commit 4a50a63

Please sign in to comment.