mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-29 18:19:30 +00:00
Rename ast_string_field_free_pool to ast_string_field_free_memory,
and ast_string_field_free_all to ast_string_field_reset_all to avoid misuse (due to too similar names and an error in documentation). Fix two related memory leaks in app_meetme. No need to merge to trunk, different fix already applied there. Not applicable to 1.2 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@88471 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -4406,7 +4406,7 @@ static void destroy_trunk(struct sla_trunk *trunk)
|
||||
while ((station_ref = AST_LIST_REMOVE_HEAD(&trunk->stations, entry)))
|
||||
free(station_ref);
|
||||
|
||||
ast_string_field_free_all(trunk);
|
||||
ast_string_field_free_memory(trunk);
|
||||
free(trunk);
|
||||
}
|
||||
|
||||
@@ -4432,7 +4432,7 @@ static void destroy_station(struct sla_station *station)
|
||||
while ((trunk_ref = AST_LIST_REMOVE_HEAD(&station->trunks, entry)))
|
||||
free(trunk_ref);
|
||||
|
||||
ast_string_field_free_all(station);
|
||||
ast_string_field_free_memory(station);
|
||||
free(station);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user