This website works better with JavaScript
Home
Explore
Help
Sign In
Kamailio
/
kamailio
mirror of
https://github.com/kamailio/kamailio.git
Watch
2
Star
0
Fork
0
Files
Issues
0
Wiki
Browse Source
tm: rest the pointer of hash table after free to avoid double free on false start
Daniel-Constantin Mierla
13 years ago
parent
a75afdd699
commit
7728464362
1 changed files
with
1 additions
and
0 deletions
Split View
Show Diff Stats
1
0
modules/tm/h_table.c
+ 1
- 0
modules/tm/h_table.c
View File
@@ -444,6 +444,7 @@ void free_hash_table( )
}
}
shm_free(_tm_table);
+ _tm_table = 0;
}
}