Skip to content
Snippets Groups Projects
Commit 3b1c4e4a authored by Joerg Behrens's avatar Joerg Behrens
Browse files

fix for idxvec construction from stripes

parent 68d0911e
No related branches found
No related tags found
No related merge requests found
......@@ -164,6 +164,12 @@ static void
generate_sorted_vector_from_stripes(struct Xt_stripe * stripes, Xt_count num_stripes,
struct xt_idxvec * idxvec) {
if (num_stripes == 0) {
idxvec->sorted_vector = NULL;
idxvec->sorted_vec_positions = NULL;
return;
}
Xt_idx * stripe_min;
int * sorted_stripe_min_pos;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment