This website works better with JavaScript
Página inicial
Explorar
Ajuda
Entrar
Kamailio
/
kamailio
mirror de
https://github.com/kamailio/kamailio.git
Observar
2
Favorito
0
Fork
0
Arquivos
Issues
0
Wiki
Ver código fonte
tm: rest the pointer of hash table after free to avoid double free on false start
Daniel-Constantin Mierla
13 anos atrás
pai
579497419b
commit
4ec2dd2e81
1 arquivos alterados
com
1 adições
e
0 exclusões
Visão dividida
Mostrar estatísticas do Diff
1
0
modules/tm/h_table.c
+ 1
- 0
modules/tm/h_table.c
Ver arquivo
@@ -444,6 +444,7 @@ void free_hash_table( )
}
}
shm_free(_tm_table);
+ _tm_table = 0;
}
}