Skip to content

Commit

Permalink
Fix small leak in explode
Browse files Browse the repository at this point in the history
  • Loading branch information
revans2 committed Feb 8, 2022
1 parent 1bc3727 commit 53882f0
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 53882f0

Please sign in to comment.