Skip to content

Commit

Permalink
(rasqal_rowsequence_rowsource_read_all_rows): Deep copy rows
Browse files Browse the repository at this point in the history
  • Loading branch information
dajobe committed Sep 20, 2023
1 parent 8c21fd3 commit 917f3b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rasqal_rowsource_rowsequence.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ rasqal_rowsequence_rowsource_read_all_rows(rasqal_rowsource* rowsource,
int size = raptor_sequence_size(con->seq);
for(i = 0; i < size; i++) {
rasqal_row *row = (rasqal_row*)raptor_sequence_get_at(con->seq, i);
raptor_sequence_push(seq, rasqal_new_row_from_row(row));
raptor_sequence_push(seq, rasqal_new_row_from_row_deep(row));
}
}

Expand Down

0 comments on commit 917f3b2

Please sign in to comment.