Fix crash with av_tree_enumerate(NULL).
Originally committed as revision 20537 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
25c4fddadc
commit
edabf35926
@ -137,10 +137,12 @@ void av_tree_destroy(AVTreeNode *t){
|
||||
|
||||
#if 0
|
||||
void av_tree_enumerate(AVTreeNode *t, void *opaque, int (*cmp)(void *opaque, void *elem), int (*enu)(void *opaque, void *elem)){
|
||||
if(t){
|
||||
int v= cmp ? cmp(opaque, t->elem) : 0;
|
||||
if(v>=0) av_tree_enumerate(t->child[0], opaque, cmp, enu);
|
||||
if(v==0) enu(opaque, t->elem);
|
||||
if(v<=0) av_tree_enumerate(t->child[1], opaque, cmp, enu);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user