File tree Expand file tree Collapse file tree 5 files changed +8
-4
lines changed Expand file tree Collapse file tree 5 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 8
8
endif ()
9
9
10
10
project (picoquic
11
- VERSION 1.1.32 .0
11
+ VERSION 1.1.33 .0
12
12
DESCRIPTION "picoquic library"
13
13
LANGUAGES C CXX)
14
14
Original file line number Diff line number Diff line change @@ -954,6 +954,10 @@ void picoquic_config_clear(picoquic_quic_config_t* config)
954
954
{
955
955
free ((void * )config -> cc_algo_id );
956
956
}
957
+ if (config -> cc_algo_option_string != NULL )
958
+ {
959
+ free ((void * )config -> cc_algo_option_string );
960
+ }
957
961
if (config -> cnx_id_cbdata != NULL )
958
962
{
959
963
free ((void * )config -> cnx_id_cbdata );
Original file line number Diff line number Diff line change 40
40
extern "C" {
41
41
#endif
42
42
43
- #define PICOQUIC_VERSION "1.1.32 .0"
43
+ #define PICOQUIC_VERSION "1.1.33 .0"
44
44
#define PICOQUIC_ERROR_CLASS 0x400
45
45
#define PICOQUIC_ERROR_DUPLICATE (PICOQUIC_ERROR_CLASS + 1)
46
46
#define PICOQUIC_ERROR_AEAD_CHECK (PICOQUIC_ERROR_CLASS + 3)
Original file line number Diff line number Diff line change @@ -293,7 +293,7 @@ static size_t nb_config_errors = sizeof(config_errors) / sizeof(config_error_tes
293
293
294
294
295
295
/* Register a small and stable list of congestion control algorithms,
296
- * sufficient to test the cc algorithm configurationfunctions .
296
+ * sufficient to test the cc algorithm configuration functions .
297
297
*/
298
298
299
299
static picoquic_congestion_algorithm_t const * config_test_cc_algo_list [3 ] = {
Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ int getter_test()
235
235
ret = -1 ;
236
236
}
237
237
}
238
- /* set the algorithm list to the completevalue before the alogorithm set/get test
238
+ /* set the algorithm list to the complete value before the alogorithm set/get test
239
239
* Hopefully, nobody is going to call their algorithm "wuovipfwds".
240
240
*/
241
241
picoquic_register_all_congestion_control_algorithms ();
You can’t perform that action at this time.
0 commit comments