Module: kamailio Branch: master Commit: 17e9e3f447867e34b8f320b8b93189f01fbc3f77 URL: https://github.com/kamailio/kamailio/commit/17e9e3f447867e34b8f320b8b93189f0...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2023-12-20T09:30:01+01:00
sipcapture: removed unused global variable
- renamed local function variable that was conflicting
---
Modified: src/modules/sipcapture/sipcapture.c
---
Diff: https://github.com/kamailio/kamailio/commit/17e9e3f447867e34b8f320b8b93189f0... Patch: https://github.com/kamailio/kamailio/commit/17e9e3f447867e34b8f320b8b93189f0...
---
diff --git a/src/modules/sipcapture/sipcapture.c b/src/modules/sipcapture/sipcapture.c index d39ee1fa7c4..320e351a371 100644 --- a/src/modules/sipcapture/sipcapture.c +++ b/src/modules/sipcapture/sipcapture.c @@ -298,8 +298,6 @@ static struct sock_filter BPF_code[] = {
//str* table_names = NULL;
-unsigned int no_tables = 0; - enum e_mt_mode mtmode = mode_random; enum hash_source source = hs_error;
@@ -481,12 +479,12 @@ int parse_table_names(str table_name, str **table_names) {
char *p = NULL; - unsigned int no_tables; + unsigned int l_no_tables; char *table_name_cpy; int i;
/*parse and save table names*/ - no_tables = 1; + l_no_tables = 1; i = 0;
str *names; @@ -503,12 +501,12 @@ int parse_table_names(str table_name, str **table_names)
while(*p) { if(*p == '|') { - no_tables++; + l_no_tables++; } p++; }
- names = (str *)pkg_malloc(sizeof(str) * no_tables); + names = (str *)pkg_malloc(sizeof(str) * l_no_tables); if(names == NULL) { PKG_MEM_ERROR; pkg_free(table_name_cpy); @@ -539,7 +537,7 @@ int parse_table_names(str table_name, str **table_names)
*table_names = names;
- return no_tables; + return l_no_tables; }
/* checks for some missing fields*/