Skip to content

Commit

Permalink
release version 1.0.1
Browse files Browse the repository at this point in the history
Bugs: Fix the memory leakage issue
Features: increase the `batch` number
  • Loading branch information
idealeer committed Dec 3, 2021
1 parent 93ca38d commit b4ddc49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions lib/constraint.c
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,7 @@ void constraint_lookup_index_for_ipvx(mpz_t ipvx, constraint_t *con,
mpz_ior(ipvx, con->radix[mpz_get_ui(radix_idx)],
radix_offset); // TODO radix_idx is no more than int32
mpz_clear(radix_offset);
mpz_clear(radix_idx);
return;
}
mpz_clear(radix_idx);
Expand Down
2 changes: 1 addition & 1 deletion src/state.h
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ struct state_conf {
int rate;
// rate in bits per second
uint64_t bandwidth;
uint8_t batch;
int batch;
int packet_streams;
int num_retries;
// how many seconds after the termination of the sender will the receiver
Expand Down

0 comments on commit b4ddc49

Please sign in to comment.