diff options
author | Wayne <52459720+HiWFeng@users.noreply.github.com> | 2022-04-12 21:34:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-12 15:34:37 +0200 |
commit | 939572c61ec27ea63b7e0f2d6a4d18f767e6195d (patch) | |
tree | 49b2a61b2715943f3b042ef17a09918d8ba475a8 | |
parent | 06a0abb6fdf8fb7a446ef5aafdf2c7d24608977f (diff) |
fix(ndpi_main):Fix memory leak about ndpi_str; (#1513)
Co-authored-by: 林文烽 <wenfeng.lin@baishan.com>
-rw-r--r-- | src/lib/ndpi_main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index e007bf2b0..005f215d2 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -2513,6 +2513,7 @@ struct ndpi_detection_module_struct *ndpi_init_detection_module(ndpi_init_prefs if((sizeof(categories) / sizeof(char *)) != NDPI_PROTOCOL_NUM_CATEGORIES) { NDPI_LOG_ERR(ndpi_str, "[NDPI] invalid categories length: expected %u, got %u\n", NDPI_PROTOCOL_NUM_CATEGORIES, (unsigned int) (sizeof(categories) / sizeof(char *))); + ndpi_free(ndpi_str); return(NULL); } @@ -2562,6 +2563,7 @@ struct ndpi_detection_module_struct *ndpi_init_detection_module(ndpi_init_prefs if((ndpi_str->custom_categories.ipAddresses == NULL) || (ndpi_str->custom_categories.ipAddresses_shadow == NULL)) { NDPI_LOG_ERR(ndpi_str, "[NDPI] Error allocating Patricia trees\n"); + ndpi_free(ndpi_str); return(NULL); } @@ -2569,6 +2571,7 @@ struct ndpi_detection_module_struct *ndpi_init_detection_module(ndpi_init_prefs if(ndpi_callback_init(ndpi_str)) { NDPI_LOG_ERR(ndpi_str, "[NDPI] Error allocating callbacks\n"); + ndpi_free(ndpi_str); return NULL; } |