This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
Kamailio
/
kamailio
mirror da
https://github.com/kamailio/kamailio.git
Segui
2
Vota
0
Forka
0
File
Problemi
0
Wiki
Sfoglia il codice sorgente
tm: rest the pointer of hash table after free to avoid double free on false start
Daniel-Constantin Mierla
13 anni fa
parent
579497419b
commit
4ec2dd2e81
1 ha cambiato i file
con
1 aggiunte
e
0 eliminazioni
Visualizzazione separata
Mostra Diff Stats
1
0
modules/tm/h_table.c
+ 1
- 0
modules/tm/h_table.c
Vedi File
@@ -444,6 +444,7 @@ void free_hash_table( )
}
}
shm_free(_tm_table);
+ _tm_table = 0;
}
}