Commit 0e6b0f3e authored by Bartosz Podrygajlo's avatar Bartosz Podrygajlo

Fix memory leak in rlc_test_5 and rlc_test_6

parent 9724ff03
...@@ -110,11 +110,8 @@ nr_rlc_entity_t *new_nr_rlc_entity_am( ...@@ -110,11 +110,8 @@ nr_rlc_entity_t *new_nr_rlc_entity_am(
ret->max_retx_threshold = max_retx_threshold; ret->max_retx_threshold = max_retx_threshold;
ret->sn_field_length = sn_field_length; ret->sn_field_length = sn_field_length;
if (!(sn_field_length == 12 || sn_field_length == 18)) { AssertFatal(sn_field_length == 12 || sn_field_length == 18, "Wrong SN field_length (%d), must be 12 or 18\n", sn_field_length);
LOG_E(RLC, "%s:%d:%s: wrong SN field_lenght (%d), must be 12 or 18\n",
__FILE__, __LINE__, __FUNCTION__, sn_field_length);
exit(1);
}
ret->sn_modulus = 1 << ret->sn_field_length; ret->sn_modulus = 1 << ret->sn_field_length;
ret->window_size = ret->sn_modulus / 2; ret->window_size = ret->sn_modulus / 2;
...@@ -172,11 +169,8 @@ nr_rlc_entity_t *new_nr_rlc_entity_um( ...@@ -172,11 +169,8 @@ nr_rlc_entity_t *new_nr_rlc_entity_um(
ret->t_reassembly = t_reassembly; ret->t_reassembly = t_reassembly;
ret->sn_field_length = sn_field_length; ret->sn_field_length = sn_field_length;
if (!(sn_field_length == 6 || sn_field_length == 12)) { AssertFatal(sn_field_length == 6 || sn_field_length == 12, "Wrong SN field_length (%d), must be 6 or 12\n", sn_field_length);
LOG_E(RLC, "%s:%d:%s: wrong SN field_lenght (%d), must be 6 or 12\n",
__FILE__, __LINE__, __FUNCTION__, sn_field_length);
exit(1);
}
ret->sn_modulus = 1 << ret->sn_field_length; ret->sn_modulus = 1 << ret->sn_field_length;
ret->window_size = ret->sn_modulus / 2; ret->window_size = ret->sn_modulus / 2;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment