Merge pull request #224 in FS/freeswitch from ~WJ1918/freeswitch-fs-7383:master to master

* commit 'dee980d2ddf2afde01ab044b1285b05b6a085dba':
  FS-7383 #resolve
This commit is contained in:
Mike Jerris 2015-03-23 07:59:09 -05:00
commit 5201708e4b

View File

@ -605,6 +605,33 @@ static void dump_trie(void)
}
/*- End of function --------------------------------------------------------*/
static void trie_recursive_free(trie_node_t *t)
{
int i;
if (t)
{
if (t->first <= t->last)
{
for (i = t->first; i <= t->last; i++)
trie_recursive_free(t->child_list[i]);
}
free(t);
}
}
/*- End of function --------------------------------------------------------*/
static void trie_free(trie_t *s)
{
if(s)
{
if(s->root)
trie_recursive_free(s->root);
free(s);
}
}
/*- End of function --------------------------------------------------------*/
int main(int argc, char *argv[])
{
trie_t *s;
@ -628,6 +655,8 @@ int main(int argc, char *argv[])
dump_trie();
trie_free(s);
return 0;
}
/*- End of function --------------------------------------------------------*/