Skip to content

Commit 46729c1

Browse files
committed
Version 1.1.33.0, review fixes, codeQL fixfree
1 parent 2ddd271 commit 46729c1

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ else()
88
endif()
99

1010
project(picoquic
11-
VERSION 1.1.32.0
11+
VERSION 1.1.33.0
1212
DESCRIPTION "picoquic library"
1313
LANGUAGES C CXX)
1414

picoquic/config.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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);

picoquic/picoquic.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
extern "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)

picoquictest/config_test.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

299299
static picoquic_congestion_algorithm_t const* config_test_cc_algo_list[3] = {

picoquictest/getter_test.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)