Browse Source

sipcapture: free allocated process memory before return

(cherry picked from commit ecf1ad77a2b9f69d5ae4f68fdc71cb1b10ebe729)
Mikko Lehto 8 years ago
parent
commit
f909250081
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/modules/sipcapture/sipcapture.c

+ 1 - 0
src/modules/sipcapture/sipcapture.c

@@ -446,6 +446,7 @@ int parse_table_names (str table_name, str ** table_names){
 	names = (str*)pkg_malloc(sizeof(str) * no_tables);
 	if(names == NULL) {
 		LM_ERR("no more pkg memory left\n");
+		pkg_free(table_name_cpy);
 		return -1;
 	}
 	p = strtok (table_name_cpy,"| \t");