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 88endif ()
99
1010project (picoquic
11- VERSION 1.1.32 .0
11+ VERSION 1.1.33 .0
1212 DESCRIPTION "picoquic library"
1313 LANGUAGES C CXX)
1414
Original file line number Diff line number Diff line change @@ -954,6 +954,10 @@ void picoquic_config_clear(picoquic_quic_config_t* config)
954954 {
955955 free ((void * )config -> cc_algo_id );
956956 }
957+ if (config -> cc_algo_option_string != NULL )
958+ {
959+ free ((void * )config -> cc_algo_option_string );
960+ }
957961 if (config -> cnx_id_cbdata != NULL )
958962 {
959963 free ((void * )config -> cnx_id_cbdata );
Original file line number Diff line number Diff line change 4040extern "C" {
4141#endif
4242
43- #define PICOQUIC_VERSION "1.1.32 .0"
43+ #define PICOQUIC_VERSION "1.1.33 .0"
4444#define PICOQUIC_ERROR_CLASS 0x400
4545#define PICOQUIC_ERROR_DUPLICATE (PICOQUIC_ERROR_CLASS + 1)
4646#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
293293
294294
295295/* 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 .
297297 */
298298
299299static 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()
235235 ret = -1 ;
236236 }
237237 }
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
239239 * Hopefully, nobody is going to call their algorithm "wuovipfwds".
240240 */
241241 picoquic_register_all_congestion_control_algorithms ();
You can’t perform that action at this time.
0 commit comments