mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-02-14 00:43:20 +00:00
add a termination condition
Originally committed as revision 16422 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
853a97530e
commit
d8bd113ef4
@ -128,9 +128,11 @@ void *av_tree_insert(AVTreeNode **tp, void *key, int (*cmp)(void *key, const voi
|
|||||||
}
|
}
|
||||||
|
|
||||||
void av_tree_destroy(AVTreeNode *t){
|
void av_tree_destroy(AVTreeNode *t){
|
||||||
|
if(t){
|
||||||
av_tree_destroy(t->child[0]);
|
av_tree_destroy(t->child[0]);
|
||||||
av_tree_destroy(t->child[1]);
|
av_tree_destroy(t->child[1]);
|
||||||
av_free(t);
|
av_free(t);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user